Trait reql::commands::Nth [] [src]

pub trait Nth {
    fn nth<T>(&self, index: T) -> Command where T: ToArg;
}

Get the nth element of a sequence, counting from zero. If the argument is negative, count from the last element

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