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-11-24 04:04:02 +00:00
|
|
|
#ifndef SPROUT_COMPOST_RANGES_HPP
|
|
|
|
#define SPROUT_COMPOST_RANGES_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/compost/ranges/copied.hpp>
|
2012-11-24 06:57:50 +00:00
|
|
|
#include <sprout/compost/ranges/piped.hpp>
|
|
|
|
#include <sprout/compost/ranges/taken.hpp>
|
|
|
|
#include <sprout/compost/ranges/taken_end.hpp>
|
|
|
|
#include <sprout/compost/ranges/dropped.hpp>
|
|
|
|
#include <sprout/compost/ranges/dropped_end.hpp>
|
|
|
|
#include <sprout/compost/ranges/window.hpp>
|
|
|
|
#include <sprout/compost/ranges/offset.hpp>
|
|
|
|
#include <sprout/compost/ranges/adapted_taken.hpp>
|
|
|
|
#include <sprout/compost/ranges/adapted_taken_end.hpp>
|
|
|
|
#include <sprout/compost/ranges/adapted_dropped.hpp>
|
|
|
|
#include <sprout/compost/ranges/adapted_dropped_end.hpp>
|
|
|
|
#include <sprout/compost/ranges/adapted_window.hpp>
|
|
|
|
#include <sprout/compost/ranges/adapted_offset.hpp>
|
|
|
|
#include <sprout/compost/ranges/jointed.hpp>
|
2012-11-24 04:04:02 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_COMPOST_RANGES_HPP
|