Esempio n. 1
0
 /**
  * @return A singleton {@link PersistentSortedMap} associating the given key with the given value;
  *     implemented as tree map.
  */
 public static <K, V> PersistentSortedMap<K, V> treeMap(K key, V val) {
   return Persistents.<K, V>treeMap().plus(key, val);
 }