Vyxapedia

Element - J - Merge

Characters: J


Description

Join two lists or items


Overloads

  • lst-str - a.append(b) (append)
  • lst-num - a.append(b) (append)
  • str-lst - b.prepend(a) (prepend)
  • num-lst - b.prepend(a) (prepend)
  • lst-lst - merged(a,b) (merge)
  • any-any - a + b (concatenate)

Examples

  • ⟨1|2|3⟩ 4 J = ⟨1|2|3|4⟩
  • `abc` `def` J = `abcdef`
  • 1 ⟨2|3|4⟩ J = ⟨1|2|3|4⟩
  • ⟨1|2⟩ ⟨3|4⟩ J = ⟨1|2|3|4⟩
  • 123 456 J = 123456
  • 123 `456` J = `123456`
  • `123` 456 J = `123456`