Skip to content

Files

Latest commit

224d6ed · Jan 29, 2022

History

History
35 lines (17 loc) · 739 Bytes

merge_greaterthan.md

File metadata and controls

35 lines (17 loc) · 739 Bytes

View this file with results and syntax highlighting here.

Greater Than (>)

> 𝕩: Merge

→full documentation

Combine an array of arrays into one array. All elements of 𝕩 must have the same rank, and the result rank is that plus the rank of 𝕩.

Returns and boxed atoms unchanged.

    a ← ⟨⟨1, 2⟩, ⟨3, 4⟩⟩

    >a

    ≢a

    ≢>a

𝕨 > 𝕩: Greater Than

→full documentation

𝕨 and 𝕩 can both be either numbers or characters.

Pervasive.

    1 > 3

    2‿3‿0 > 3‿1‿0

    'a' > 'b'