Uses of Class
edu.rice.cs.plt.collect.TotalMap

Packages that use TotalMap
edu.rice.cs.plt.collect Contains general-purpose extensions to and variations on the java.util collections framework. 
 

Uses of TotalMap in edu.rice.cs.plt.collect
 

Methods in edu.rice.cs.plt.collect that return TotalMap
static
<K,V> TotalMap<K,V>
TotalMap.make()
          Call the constructor (allows the type arguments to be inferred)
static
<K,V> TotalMap<K,V>
TotalMap.make(Lambda<? super K,? extends V> lambda)
          Call the constructor (allows the type arguments to be inferred)
static
<K,V> TotalMap<K,V>
TotalMap.make(Lambda<? super K,? extends V> lambda, boolean cache)
          Call the constructor (allows the type arguments to be inferred)
static
<K,V> TotalMap<K,V>
TotalMap.make(Lambda<? super K,? extends V> lambda, Map<? super K,V> overrides)
          Call the constructor (allows the type arguments to be inferred)
static
<K,V> TotalMap<K,V>
TotalMap.make(Lambda<? super K,? extends V> lambda, Map<? super K,V> overrides, boolean cache)
          Call the constructor (allows the type arguments to be inferred)
static
<K,V> TotalMap<K,V>
TotalMap.make(Map<? super K,V> overrides)
          Call the constructor (allows the type arguments to be inferred)