Vyxapedia

Element - - Head Remove / Behead

Characters:


Description

All but the first item of a list / Drop 1


Overloads

  • lst - a[1:] or [] if empty
  • str - a[1:] or '' if empty
  • num - range(2, a + 1)

Examples

  • ⟨0|⟨43|69⟩|`foo`⟩ Ḣ = ⟨⟨43|69⟩|`foo`⟩
  • ⟨⟩ Ḣ = ⟨⟩
  • `foo` Ḣ = `oo`
  • 12.34 Ḣ = ⟨2|3|4|5|6|7|8|9|10|11|12⟩
  • 0.2 Ḣ = ⟨⟩
  • -123 Ḣ = ⟨⟩