Pair
Pair (⍮
) or Juxtapose is a primitive ambivalent function that constructs a vector of its arguments. It can be implemented as the dfn {⍺←,⊂ ⋄ ⍺ ⍵}
, or the catenation of the enclosed arguments, written ,⍥⊂
using Over.[1] Pair aids in constructing nested arrays in tacit programming, where stranding by juxtaposition is not available. It was introduced in Extended Dyalog APL in 2018, and then adopted into dzaima/APL. It was added to BQN with the glyph ⋈
in 2021. The monadic case, which is similar to Enclose except that it gives a result of rank 1 rather than 0, is called Enlist in BQN, as well as K, where it is the monadic case of ,
(K has no dyadic Pair primitive).
Common usage
Its plain usage is in pairing up two parallel values:
6 7 8(+⍮-)3 ┌───────┬─────┐ │9 10 11│3 4 5│ └───────┴─────┘
It can also be combined with Mix to increase rank rather than depth:
6 7 8(+↑⍤⍮-)3 9 10 11 3 4 5
External links
Documentation
- BQN (as
⋈
)
See also
References
- ↑ "Composition and Enclosure" § Composition Operators. SATN-41, 1981-06-20.