Skip to content

Operator Syntax

Operators take one or two operands. An operator with one operand is monadic. The operand of a monadic operator is to the left of the operator. An operator with two operands is dyadic. Both operands are required for a dyadic operator.

Operators have long scope to the left.  That is, the left operand is the longest function or array expression to its left (see Programmer's Guide: "Operators"). A dyadic operator has short scope on the right.  Right scope may be extended by the use of parentheses.

An operand may be an array, a primitive function, a system function, a defined function or a derived function. An array may be the result of an array expression.

An operator with its operand(s) forms a derived function. The derived function may be monadic or dyadic and it may or may not return an explicit result.

Examples

      +/5
15
      (*2)3
1 4 9

      PLUS  +  TIMES  ×
      1 PLUS.TIMES 2
2

      ⎕NL 2
A
X
      ⎕EX¨⎕NL 2
      ⎕NL 2

Monadic Operators

Like primitive functions, monadic operators can be:

  • named
  • enclosed within parentheses
  • displayed in the session

Examples

        each  (¨)      ⍝ name and display
¨
      shape
      shape each (1 2) (3 4 5)
 2  3 

      slash/
      +slash 10
55
      swap
      3 -swap 4
1

Right Operand Currying

A dyadic operator may be bound or curried with its right operand to form a monadic operator:

Examples

        inv  ¯1  ⍝ produces monadic inverse operator
 ¯1
      +\inv 1 2 3    ⍝ scan-inverse
1 1 1
      lim         ⍝ power-limit

      1 +÷lim 1     ⍝ Phi
1.61803

Function Composition

Function composition refers to the "gluing" together of two functions using a dyadic operator such that the functions are applied to the argument(s) as normal, but in a particular pattern specific to the operator that is being used. The term function composition comes from traditional mathematics, where it is used for a function h(x)=f(g(x)) when written as h(x)=(f∘g)(x) APL generalises this idea to dyadic functions, allowing various patterns of application in addition to the simple application of one monadic function to the result of another monadic function. The four main patterns, represented by atop, behind, beside, and over, can be visualised as shown below.

Information

In the diagrams below, the dotted branch falls away when the operator is applied monadically. Note that monadic atop, beside, and over are all equivalent to each other and to h(x)=(f∘g)(x) of traditional mathematics.

Atop: {R}←{X}f⍤g Y

Function composition diagram for atop
Figure 1: Function composition diagram for atop

Behind: {R}←{X}f⍛g Y

Function composition diagram for monadic behind
Figure 2: Function composition diagram for monadic behind

Function composition diagram for dyadic behind
Figure 3: Function composition diagram for dyadic behind

Beside: {R}←{X}f∘g Y

Function composition diagram for beside
Figure 4: Function composition diagram for beside

Over: {R}←{X}f⍥g Y

Function composition diagram for over
Figure 5: Function composition diagram for over