Trait reql::commands::SpliceAt [] [src]

pub trait SpliceAt {
    fn splice_at<O, A>(&self, offset: O, array: A) -> Command where O: ToArg, A: ToArg;
}

Insert several values in to an array at a given index

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