-
Notifications
You must be signed in to change notification settings - Fork 4
Base
Jayson Harshbarger edited this page Apr 11, 2016
·
3 revisions
( x y -> z)
- list concatenation/function composition
- boolean or
- object assign/assoc
- arithmetic addition
- string concatenation
( x y -> z)
- boolean xor
- arithmetic subtraction
( x y -> z)
- intersparse
- string join
- boolean and
- repeat sequence
( x y -> z)
- boolean nand
- string split
- array/string slice
- arithmetic division
right shift
( x y -> z)
- unshift/cons
- object merge
- Sign-propagating right shift
Left shift
( x y -> z)
- push/snoc
- object merge
- Left shift
conditional (ternary) operator
( {boolean} [A] [B] -> {A|B} )
returns the item at the specified index in a sequence ( {seq} {index} -> {item} )
push the imaginary number 0+1i ( -> 0+1i )
pushes the value Infinity ( -> Infinity )
( x y -> z ) pushes 0 if rhs and lhs are equal pushes - if lhs is > rhs pushes -1 otherwise
- Introduction
- Language
- Words
- Internal
- Definitions
- Examples