MCPcopy Create free account
hub / github.com/boostorg/parser / insert

Function insert

include/boost/parser/detail/text/trie_map.hpp:670–674  ·  view source on GitHub ↗

Inserts the key/value pair `e` into *this. The `inserted` field of the result will be true if the operation resulted in a new insertion, or false otherwise. */

Source from the content-addressed store, hash-verified

668 of the result will be true if the operation resulted in a new
669 insertion, or false otherwise. */
670 insert_result insert(value_type e)
671 {
672 return insert(
673 detail::begin(e.key), detail::end(e.key), std::move(e.value));
674 }
675
676 /** Inserts the sequence of key/value pairs `[first, last)` into
677 *this. The `inserted` field of the result will be true if the

Callers 4

trie_mapFunction · 0.70
trie_map.hppFile · 0.70
insert_or_assignFunction · 0.70
from_trie_implFunction · 0.70

Calls 2

beginFunction · 0.70
endFunction · 0.70

Tested by

no test coverage detected