mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-12 14:54:10 +00:00
fix template-parameter name: Iterator, Range
This commit is contained in:
parent
ddccff51e6
commit
21cefe8a67
62 changed files with 809 additions and 784 deletions
|
@ -10,9 +10,9 @@ namespace sprout {
|
|||
// Copyright (C) 2011 RiSK (sscrisk)
|
||||
|
||||
// 25.2.1 All of
|
||||
template<typename Range, typename Predicate>
|
||||
template<typename InputRange, typename Predicate>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of(Range const& range, Predicate pred) {
|
||||
all_of(InputRange const& range, Predicate pred) {
|
||||
return sprout::all_of(sprout::begin(range), sprout::end(range), pred);
|
||||
}
|
||||
} // namespace range
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue