kawa.lib.misc.values()

Here are the examples of the java api kawa.lib.misc.values() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

18 Source : hashtables.java
with GNU General Public License v2.0
from Cloudslab

public static Object hashtableEntries(HashTable ht) {
    Pair pair = ht.entriesVectorPair();
    return misc.values(lists.car.apply1(pair), lists.cdr.apply1(pair));
}