Skip to content

Instantly share code, notes, and snippets.

@bolero-MURAKAMI
Last active December 21, 2015 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bolero-MURAKAMI/6232220 to your computer and use it in GitHub Desktop.
Save bolero-MURAKAMI/6232220 to your computer and use it in GitHub Desktop.

all_of

Interface

C++

template<typename InputIterator, typename Predicate> inline SPROUT_CONSTEXPR bool all_of(InputIterator first, InputIterator last, Predicate pred);

Returns

true if [first,last) is empty or if pred(*i) is true for every iterator i in the range [first,last), and false otherwise.

Examples

C++

#include <sprout/algorithm/all_of.hpp> #include <sprout/array.hpp> #include <sprout/container.hpp> #include <sprout/functional.hpp> using namespace sprout;

SPROUT_STATIC_CONSTEXPR auto input = array<int, 10>{{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}; SPROUT_STATIC_CONSTEXPR auto result = sprout::all_of(begin(input), end(input), bind2nd(less<>(), 11)); static_assert(result, "all of input is less than 11.");

Complexity

At most last - first applications of the predicate.

Recursive function invocations in O(N) (linear) depth.

Header

sprout/algorithm/all_of.hpp

Convenience header: sprout/algorithm.hpp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment