Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HelenOS/helenos
/ none_of
Function
none_of
uspace/lib/cpp/include/__bits/algorithm.hpp:81–84 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
79
80
template<class InputIterator, class Predicate>
81
bool none_of(InputIterator first, InputIterator last, Predicate pred)
82
{
83
return !any_of(first, last, pred);
84
}
85
86
/**
87
* 25.2.4, for_each:
Callers
1
test_non_modifying
Method · 0.85
Calls
1
any_of
Function · 0.85
Tested by
1
test_non_modifying
Method · 0.68