NGS version 0.2.5 auto-generated documentation
Documentation index
The global namespace
? multimethod
? multimethod
Methods
?(
x:
Any
,
predicate:
Fun
)
Source:
stdlib.ngs:577
Filter operator. Same as calling x.filter(predicate)
Example
[1,2,3,4] ? F(x) x > 2 # [3,4]