Trait reql::commands::SetIntersection [] [src]

pub trait SetIntersection {
    fn set_intersection<T>(&self, array: T) -> Command where T: ToArg;
}

Intersect two arrays returning values that occur in both of them as a set (an array with distinct values)

Note: This command is not yet fully documented. For more information and examples, please see the equivalent command in the official Java driver documentation.

Required Methods

Implementors