Vyxapedia

Element - - Join By Nothing

Characters:


Description

Join a list by the empty string. Vectorises if the list contains lists.


Overloads

  • num - abs(a) <= 1
  • str - pad with 0s to nearest positive multiple of 8
  • lst - "".join(a)
  • fun - first integer x where a(x) is truthy

Examples

  • ⟨`a`|`b`|`c`⟩ ṅ = `abc`
  • 0.54 ṅ = 1
  • `` ṅ = `00000000`
  • `asdf` ṅ = `0000asdf`
  • `asdfghjk` ṅ = `asdfghjk`
  • ⟨⟩ ⟨⟩ ṅ = ⟨``|``⟩
  • ⟨1|⟨`abc`|`def`|`ghi`⟩|⟨1|2|3⟩|⟨0.5|1.1|⟨1|2|3⟩⟩⟩ ṅ = ⟨1|`abcdefghi`|123|⟨1|0|123⟩⟩