Allow checking of containment using in such as in Python.
Description of potential implementation
Make in a separate construct, or, operator.
Then remove in from the grammar of the for loop, instead, we check that the collection itself is a in construct.
Current Issue
We can only check containment using
contains
.High-level description of the feature
Allow checking of containment using
in
such as in Python.Description of potential implementation
Make
in
a separate construct, or, operator. Then removein
from the grammar of the for loop, instead, we check that the collection itself is ain
construct.