Returns the number of keys/value pairs in the MKMap object.
Removes all keys-value pairs from the MKMap object.
Returns true if an element in the MKMap object existed and has been removed, or false if the element does not exist.
const mkMap = new MKMap([['foo'], 'bar']);
mkMap.delete(['foo']); // => true
mkMap.delete(['foo']); // => false
Returns a boolean asserting whether a value has been associated to the keys in the MKMap object or not.
const mkMap = new MKMap([['foo'], 'bar']);
mkMap.has(['foo']); // => true
Returns a new Iterator object that contains the keys for each element in the MKMap.
Returns a new Iterator object that contains the values for each element in the MKMap object.
Creates a new MKMap object.
Could be called with initial keys-values.