CharArrayMap
A simple class that stores key Strings as char[]'s in a hash table. Note that this is not a general purpose class. For example, it cannot remove items from the map, nor does it resize its hash table to be smaller, etc. It is designed to be quick to retrieve items by char[] keys without the necessity of converting to a String first.
Constructors
Types
Properties
Returns an CharArraySet view on the map's keys. The set will use the same matchVersion as this map.
Functions
ported from java.util.Map.computeIfAbsent()
true if the CharSequence is in the .keySet
true if the len chars of text starting at off are in the .keySet
Add the given mapping. If ignoreCase is true for this Set, the text array will be directly modified. The user should never modify this text array after calling this method.
ported from java.util.Map.putIfAbsent()