Operates differently depending on whether a value
is given:
true
if a value existed and has been removed, or false
if the specified
key / value does not exist.
Returns an array of all values associated with the given key. If no value exists, an empty array is returned.
Note: The returned array is assumed not to be modified. Use the set
method to add a
value and delete
to remove a value from the multimap.
A multimap is a variation of a Map that has potentially multiple values for every key.