Key type
Mapped type
Derived type extending this UniqueMap
Return type of {@link MapContainer.insert}
Iterator type
Iterator of MapContainer Iterator of UniqueMap
Reverse iterator type
Reverse iterator of MapContainer Reverse iterator of UniqueMap
Range Assigner.
Input iteartor of the first position.
Input iterator of the last position.
Count elements with a specified key.
Key to search for.
Number of elements with the specified key.
Construct and insert element with hint.
Hint for the position where the element can be inserted.
Key of the new element.
Value of the new element.
An iterator to the newly inserted element, if the specified key doesn't exist, otherwise an iterator to the ordinary element.
Erase elements with a specified key.
Key to search for.
Number of erased elements.
Extract an element by key.
Key to search for.
The extracted element.
Extract an element by iterator.
The iterator to the element for extraction.
Iterator following the pos, strained by the extraction.
Get iterator to element.
Key to search for.
An iterator to the element, if the specified key is found, otherwise this.end()
.
Get a value.
Key to search for.
The value mapped by the key.
Test whether a key exists.
Key to search for.
Whether the specified key exists.
Insert an element.
A tuple to be referenced for the insert.
Pair of an iterator to the newly inserted element and true
, if the specified key doesn't exist, otherwise Pair of iterator to the ordinary element and false
.
Insert an element with hint.
Hint for the position where the element can be inserted.
A tuple to be referenced for the insert.
An iterator to the newly inserted element, if the specified key doesn't exist, otherwise an iterator to the ordinary element.
Insert range elements.
Input iterator of the first position.
Input iteartor of the last position.
Insert or assign an element.
Key to be mapped or search for.
Value to insert or assign.
Pair of an iterator to the newly inserted element and true
, if the specified key doesn't exist, otherwise Pair of iterator to the ordinary element and false
.
Insert or assign an element with hint.
Hint for the position where the element can be inserted.
Key to be mapped or search for.
Value to insert or assign.
An iterator to the newly inserted element, if the specified key doesn't exist, otherwise an iterator to the ordinary element.
Set a value with key.
Key to be mapped or search for.
Value to insert or assign.
Native function for JSON.stringify()
.
An array containing children elements.
Generated using TypeDoc
Basic map container blocking duplicated key.
Jeongho Nam - https://github.com/samchon