mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
porting sscrisk/CEL
This commit is contained in:
parent
ad60c8c530
commit
db20f64991
181 changed files with 2531 additions and 607 deletions
19
sprout/algorithm/find.hpp
Normal file
19
sprout/algorithm/find.hpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef SPROUT_ALGORITHM_FIND_HPP
|
||||
#define SPROUT_ALGORITHM_FIND_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/iterator/operation.hpp>
|
||||
|
||||
namespace sprout {
|
||||
// Copyright (C) 2011 RiSK (sscrisk)
|
||||
|
||||
// 25.2.5 Find
|
||||
template<typename InputIterator, typename T>
|
||||
SPROUT_CONSTEXPR InputIterator find(InputIterator first, InputIterator last, T const& value) {
|
||||
return first == last || *first == value ? first
|
||||
: sprout::find(sprout::next(first), last, value)
|
||||
;
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_FIND_HPP
|
Loading…
Add table
Add a link
Reference in a new issue