MCPcopy Create free account
hub / github.com/CppMicroServices/CppMicroServices / end

Method end

framework/src/util/AnyMap.cpp:755–769  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

753 }
754
755 any_map::iterator
756 any_map::end()
757 {
758 switch (type)
759 {
760 case map_type::ORDERED_MAP:
761 return { o_m().end() };
762 case map_type::UNORDERED_MAP:
763 return { uo_m().end(), iterator::UNORDERED };
764 case map_type::UNORDERED_MAP_CASEINSENSITIVE_KEYS:
765 return { uoci_m().end(), iterator::UNORDERED_CI };
766 default:
767 throw std::logic_error("invalid map type");
768 }
769 }
770
771 any_map::const_iterator
772 any_map::end() const

Callers 15

mainFunction · 0.45
add_fileMethod · 0.45
operator()Method · 0.45
runMethod · 0.45
StopMethod · 0.45
StartMethod · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
testExistsFunction · 0.45

Calls

no outgoing calls

Tested by 15

StopMethod · 0.36
StartMethod · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
testExistsFunction · 0.36
removeLineEndingsFunction · 0.36
testConcurrentAddRemoveFunction · 0.36
TEST_FFunction · 0.36
FindMethod · 0.36