MCPcopy Create free account
hub / github.com/CVCUDA/CV-CUDA / MustRemoveAny

Function MustRemoveAny

tests/common/ValueList.hpp:946–951  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

944namespace detail {
945template<int... II, class F, class... TT>
946bool MustRemoveAny(std::integer_sequence<int, II...>, const F &criteria, const std::tuple<TT...> &v)
947{
948 static_assert(sizeof...(II) == sizeof...(TT));
949
950 return (false || ... || criteria(std::get<II>(v)));
951}
952} // namespace detail
953
954template<class... TT, class F>

Callers 1

RemoveIfAnyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected