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

Function find

Source/ThirdParty/fmt/core.h:2403–2408  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2401// Return the result via the out param to workaround gcc bug 77539.
2402template <bool IS_CONSTEXPR, typename T, typename Ptr = const T*>
2403FMT_CONSTEXPR auto find(Ptr first, Ptr last, T value, Ptr& out) -> bool {
2404 for (out = first; out != last; ++out) {
2405 if (*out == value) return true;
2406 }
2407 return false;
2408}
2409
2410template <>
2411inline auto find<false, char>(const char* first, const char* last, char value,

Callers 11

insertUniqueMethod · 0.85
setVariableExtensionsMethod · 0.85
removeBlockMethod · 0.85
insertUniqueMethod · 0.85
closeMethod · 0.85
addMethod · 0.85
isCompleteMethod · 0.85
matchesMethod · 0.85
getMethod · 0.85
CloseMethod · 0.85
GetLayersFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected