Jot
Jot is a Dyadic operator
Operator Jot means

Composition

Form f∘g (function composition)

      ⌽∘⍳¨ 3 4 5
┌─────┬───────┬─────────┐
│3 2 1│4 3 2 1│5 4 3 2 1│
└─────┴───────┴─────────┘

      ¯1 ⌽∘⍳¨ 3 4 5
┌─────┬───────┬─────────┐
│3 1 2│4 1 2 3│5 1 2 3 4│
└─────┴───────┴─────────┘

      +∘÷/ 40⍴1    ⍝ continued fraction
1.61803

Form A∘g (left argument currying)

       next ← 1∘+
       next 23
24

N.B. Jot is also used in conjunction with Dot to mean Outer Product.

Language Elements