python
from fave_recode.relations import in_relation
'x', 'xyz') in_relation(
True
in
, not in
relations.in_relation(lhs, rhs)
Is lhs
in rhs
?
Name | Type | Description | Default |
---|---|---|---|
lhs |
Any | left hand side object | required |
rhs |
Any | right hand side object (must work with in ) |
required |
Type | Description |
---|---|
bool | True or False |