match.Rd
Match a column with given values.
# S4 method for class 'Column' x %in% table
a Column.
a collection of values (coercible to list) to compare with.
A matched values as a result of comparing with given values.
%in% since 1.5.0
if (FALSE) { # \dontrun{ filter(df, "age in (10, 30)") where(df, df$age %in% c(10, 30)) } # }