diff --git a/tarantool/src/index.rs b/tarantool/src/index.rs index a6f53f60..726ad364 100644 --- a/tarantool/src/index.rs +++ b/tarantool/src/index.rs @@ -88,8 +88,14 @@ pub enum IteratorType { /// key overlaps x Overlaps = 10, - /// tuples in distance ascending order from specified point + /// tuples as they move away from x point Neighbor = 11, + + /// next prefix, ASC order + NP = 12, + + /// previous prefix, DESC order + PP = 13, } ////////////////////////////////////////////////////////////////////////////////