Trait reql::commands::SetDifference [] [src]

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

Remove the elements of one array from another and return 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