Koloboke icon indicating copy to clipboard operation
Koloboke copied to clipboard

Add CharSets/CharShortMaps utilities/views

Open leventov opened this issue 10 years ago • 0 comments

net.openhft.collect.CharSets {
  CharSet empty(); // immutable
  CharSet singleton(char e); // immutable
  CharCollection asImmutable(Collection<Character> )
}

net.openhft.collect.map.CharShortMaps {
  CharShortMap emptyMap(); // immutable
  asImmutableMap(char[] keys, char[] values);
  asImmutable(Map<Character, Short> map);
}

Or something like this

leventov avatar Jan 27 '14 10:01 leventov