. package:ghc-lib-parser

Right to left function composition.
(f . g) x = f (g x)
f . id = f = id . f

Examples

>>> map ((*2) . length) [[], [0, 1, 2], [0]]
[0,6,2]
>>> foldr (.) id [(+1), (*3), (^3)] 2
25
>>> let (...) = (.).(.) in ((*2)...(+)) 5 10
30
return the expression at idx of obj
obj .! idx ==> obj[idx]
JS infix Equality operators
JS infix Equality operators
JS infix bit operators
JS infix Ord operators
JS infix bit shift operators
JS infix Ord operators
JS infix Equality operators
JS infix Equality operators
JS infix Ord operators
JS infix Ord operators
JS infix bit shift operators
JS infix bit shift operators
Select a property prop, from and object obj
obj .^ prop ==> obj.prop
JS infix bit operators
JS infix bit operators
Bitwise "and"
Bitwise "or"