Methods

?ΒΆ

?(x:Any, predicate:Fun)

Filter operator. Same as calling x.filter(predicate)
Source: stdlib.ngs:385

Example

[1,2,3,4] ? F(x) x > 2  # [3,4]