Match a column with given values.
     
    
    Usage
    # S4 method for Column
%in%(x, table)
 
    
    Arguments
    - x
- a Column. 
- table
- a collection of values (coercible to list) to compare with. 
 
    
    Value
    
A matched values as a result of comparing with given values.
     
    
    
    Examples
    if (FALSE) {
filter(df, "age in (10, 30)")
where(df, df$age %in% c(10, 30))
}