pfilter multimethod
Methods
- pfilter(e:Eachable1, pattern:Any) Source: stdlib.ngs:5390
Parallel filter. Typcally should be used with "heavy" pattern such as SSH. Returns
Of same type as eExample
Set(1..10).pfilter(X>3) # <Set 4, 5, 6, 7, 8, 9>
- pfilter(e:Eachable1, threads:Int, pattern:Any) Source: stdlib.ngs:5401
Parallel filter. Typcally should be used with "heavy" pattern such as SSH. Returns
Of same type as eExample
Set(1..10).pfilter(2, X>3) # <Set 4, 5, 6, 7, 8, 9>