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

Create map get by value range operation. Server selects the map items identified by the 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 selected data specified by return_type.