MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / find

Method find

extlibs/fmt/include/fmt/core.h:1171–1177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1169 ~arg_map() { delete[] map_; }
1170
1171 basic_format_arg<Context> find(basic_string_view<char_type> name) const {
1172 // The list is unsorted, so just return the first matching name.
1173 for (entry *it = map_, *end = map_ + size_; it != end; ++it) {
1174 if (it->name == name) return it->arg;
1175 }
1176 return {};
1177 }
1178};
1179
1180// A type-erased reference to an std::locale to avoid heavy <locale> include.

Callers 2

argMethod · 0.45
is_like_std_stringClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected