Uses of Interface
edu.umd.cloud9.util.map.MapIF

Packages that use MapIF
edu.umd.cloud9.io.map   
edu.umd.cloud9.util.map   
 

Uses of MapIF in edu.umd.cloud9.io.map
 

Classes in edu.umd.cloud9.io.map that implement MapIF
 class HMapIFW
           Writable representing a map where keys are ints and values are floats.
 

Uses of MapIF in edu.umd.cloud9.util.map
 

Classes in edu.umd.cloud9.util.map that implement MapIF
 class HMapIF
          Hash-based implementation of MapIF.
 

Methods in edu.umd.cloud9.util.map with parameters of type MapIF
 float HMapIF.dot(MapIF m)
          Computes the dot product of this map with another map.
 void HMapIF.plus(MapIF m)
          Adds values of keys from another map to this map.
 void HMapIF.putAll(MapIF m)
           
 void MapIF.putAll(MapIF m)
          Copies all of the mappings from the specified map to this map.
 

Constructors in edu.umd.cloud9.util.map with parameters of type MapIF
HMapIF(MapIF m)
          Constructs a new HMapIF with the same mappings as the specified MapIF.