Methods

not inΒΆ

not in(a:Any, b:Any)

"not in" operator. Exactly same as "not(a in b)"
Source: stdlib.ngs:784

Example

10 not in [1,2]  # true
1  not in [1,2]  # false