pub fn remove_by_value_range<'a>(
    bin: &'a str,
    begin: &'a Value,
    end: &'a Value,
    return_type: MapReturnType
) -> Operation<'a>
Expand description

Create map remove operation. Server removes map items identified by value range (begin inclusive, end exclusive). If begin is Value::Nil, the range is less than end. If end is Value::Nil, the range is greater than equal to begin. Server returns the removed data specified by return_type.