MCPcopy Create free account
hub / github.com/ErrorAtLine0/infinipaint / find

Function find

include/poolstl.hpp:2233–2237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2231 */
2232 template <class ExecPolicy, class RandIt, class T>
2233 poolstl::internal::enable_if_poolstl_policy<ExecPolicy, RandIt>
2234 find(ExecPolicy &&policy, RandIt first, RandIt last, const T& value) {
2235 return std::find_if(std::forward<ExecPolicy>(policy), first, last,
2236 [&value](const T& test) { return value == test; });
2237 }
2238
2239 /**
2240 * NOTE: Iterators are expected to be random access.

Callers 5

top_toolbarMethod · 0.50
layoutMethod · 0.50
get_valid_font_nameMethod · 0.50
is_selectedMethod · 0.50
setup_list_guiMethod · 0.50

Calls 1

find_ifFunction · 0.85

Tested by

no test coverage detected