2014-07-12 03:59:16 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
2014-07-12 03:59:16 +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)
|
|
|
|
=============================================================================*/
|
|
|
|
#ifndef SPROUT_CONTAINER_RANGE_FUNCTIONS_HPP
|
|
|
|
#define SPROUT_CONTAINER_RANGE_FUNCTIONS_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/range_functions_fwd.hpp>
|
|
|
|
#include <sprout/container/begin.hpp>
|
|
|
|
#include <sprout/container/end.hpp>
|
|
|
|
#include <sprout/container/size.hpp>
|
|
|
|
#include <sprout/container/empty.hpp>
|
2014-07-12 09:04:45 +00:00
|
|
|
#include <sprout/container/front.hpp>
|
|
|
|
#include <sprout/container/back.hpp>
|
|
|
|
#include <sprout/container/at.hpp>
|
2015-03-22 15:26:20 +00:00
|
|
|
#include <sprout/container/nth.hpp>
|
|
|
|
#include <sprout/container/index_of.hpp>
|
2014-07-12 12:37:49 +00:00
|
|
|
#include <sprout/container/data.hpp>
|
2014-07-12 03:59:16 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_RANGE_FUNCTIONS_HPP
|