2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-09-21 06:43:30 +00:00
|
|
|
#ifndef SPROUT_TPP_ALGORITHM_HPP
|
|
|
|
#define SPROUT_TPP_ALGORITHM_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-10-04 14:25:28 +00:00
|
|
|
#include <sprout/tpp/algorithm/all_of.hpp>
|
|
|
|
#include <sprout/tpp/algorithm/any_of.hpp>
|
|
|
|
#include <sprout/tpp/algorithm/none_of.hpp>
|
2012-11-02 13:00:10 +00:00
|
|
|
#include <sprout/tpp/algorithm/one_of.hpp>
|
2013-11-20 13:04:11 +00:00
|
|
|
#include <sprout/tpp/algorithm/min_element.hpp>
|
|
|
|
#include <sprout/tpp/algorithm/max_element.hpp>
|
2012-09-21 06:43:30 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_TPP_ALGORITHM_HPP
|