AbstractSortedMap
  
  Object Hierarchy:
  
 
  Description:
  public abstract class AbstractSortedMap<
K,
V> : 
AbstractMap<
K,
V>, 
SortedMap<
K,
V>
  
 
  
  
  
  Content:
  Properties:
  
  Creation 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 class Gee.AbstractMap
    
   
  
    All known members inherited from class GLib.Object
    
   
  
    All known members inherited from interface Gee.SortedMap
    
   
  
    All known members inherited from interface Gee.Traversable
    
   
  
    All known members inherited from interface Gee.Iterable
    
   
  
    All known members inherited from interface Gee.Map