Construct a multi key map instance
Optional
entries: MultiKeyMapEntries<K, V>the map entries that represented as [K[], V][]
Returns the string representation of the map identifier ('MultiKeyMap')
the string representation of the map identifier
Returns the size of map
the size of map
Deletes the entry with the given key
the key to delete
whether the entry has been deleted
Deletes all the entries with the given keys
the keys to delete
whether any of the entries has been deleted
Deletes the entry/entries with the given value
the value to delete
whether the entry/entries has been deleted
Deletes all the entries with any of the given values
the values to delete
whether any of the entries has been deleted
Returns whether the map contains all the given keys
the keys to check
whether matching entry values exactly
whether the map contains all the given keys
Returns whether the map contains all the given values
the values to check
whether the map contains all the given values
Returns whether the map contains any of the given keys
the keys to check
whether matching entry values exactly
whether the map contains any of the given keys
Returns whether the map contains any of the given values
the values to check
whether the map contains any of the given values
Returns whether the map contains the given keys
the keys to check
whether matching entry values exactly
whether the map contains the given key
Returns whether the map contains the given value
the value to check
whether the map contains the given value
Static
ofConstruct a multi key map instance
Optional
entries: MultiKeyMapEntries<K, V>the map entries that represented as [K[], V][]
a multi key map instance
Map with entries that contains multiple keys and a single value
Author
David Hsing