9.7 Membership Tests
A membership test uses the in operator to check whether an element is included in the value. Maps, lists, mutable lists, pair lists, arrays, sets, and ranges all support membership tests, as do instances of classes that implement MembershipTestable.
expression | |
| |
repetition | |
| |
expression | |
| |
repetition | |
| |
|
The in operator is also recognized by for and each as part of the syntax of iteration.
The use_static declaration constrains in to work only when the right-hand argument has static information indicating that it satisfies MembershipTestable.
> "a" in {"a", "b"}
#true
#true
> "a" in {"a": 1, "b": 2}
#true
> "a" in ["a", "b"]
#true
> 1 in {"a": 1, "b": 2}
#false
interface | |
The interface has a single abstract method:
contains(val) —
checks for membership of val, which is normally provided to the left of in. The result of the contains method must be a Boolean value, and it is the result of the in form.
class Either(lst1, lst2):