SortedMap
Object Hierarchy:
Description:
public interface SortedMap<
K,
V> :
Map<
K,
V>
All known implementing classes:
All known sub-interfaces:
Content:
Properties:
Static methods:
Methods:
- public abstract SortedMap<K,V> head_map (K before)
Returns map containing pairs with key strictly lower the the argument.
- public abstract SortedMap<K,V> sub_map (K before, K after)
Returns right-open map (i.e. containing all pair which key is strictly lower
then the second argument and equal or bigger then the first one).
- public abstract SortedMap<K,V> tail_map (K after)
Returns map containing pairs with key equal or larger then the argument.
Inherited Members:
All known members inherited from interface Gee.Map