Skip to content
Snippets Groups Projects
Commit 16abccfe authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Tom Fischer
Browse files

[BL] New containsIf algorithm.

parent f566843e
No related branches found
No related tags found
No related merge requests found
...@@ -228,6 +228,13 @@ bool contains(Container const& container, ...@@ -228,6 +228,13 @@ bool contains(Container const& container,
container.end(); container.end();
} }
template <typename Container, typename Predicate>
bool containsIf(Container const& container, Predicate&& predicate)
{
return std::find_if(container.begin(), container.end(), predicate) !=
container.end();
}
template <typename Container> template <typename Container>
boost::optional<typename Container::value_type> findFirstNotEqualElement( boost::optional<typename Container::value_type> findFirstNotEqualElement(
Container const& container, typename Container::value_type const& element) Container const& container, typename Container::value_type const& element)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment