Closed
Description
In the last call it was brought up that perhaps we should add Column.is_in
This can be achieved with the existing Standard methods:
result = column == values[0]
for value in values[1:]:
if math.isnan(value):
result |= column.isnan()
elif value is namespace.null:
result |= column.isnull()
else:
result |= column == value
so it really just be a convenience method. No objections to adding it anyway
Metadata
Metadata
Assignees
Labels
No labels