Documentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
Column.isin(*elements: ConstantT_co) → RelationalCondition[ColumnIdentifier, Literal[‘EQ’], +ConstantT_co]
Column.isin(*elements: ConstantT_co | None) → RelationalCondition[TypeAliasForwardRef, Literal[‘EQ’], Union[+ConstantT_co, NoneType]]
Return a condition evaluating toTrue for elements of this column included in the given elements, and evaluating to False elsewhere.
- Parameters: elements – One or more values that the column elements will be compared against.