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

Create map get by key range operation. Server selects the map items identified by the key 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.