python
from fave_recode.relations import in_relation
in_relation('x', 'xyz')True
in, not inrelations.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 |