2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
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 15:43:30 +09:00
|
|
|
#ifndef SPROUT_ITERATOR_ADAPTOR_HPP
|
|
|
|
#define SPROUT_ITERATOR_ADAPTOR_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/reverse_iterator.hpp>
|
|
|
|
#include <sprout/iterator/transform_iterator.hpp>
|
2013-01-17 03:53:17 +09:00
|
|
|
#include <sprout/iterator/replace_iterator.hpp>
|
|
|
|
#include <sprout/iterator/replace_if_iterator.hpp>
|
2012-09-21 15:43:30 +09:00
|
|
|
#include <sprout/iterator/filter_iterator.hpp>
|
2013-01-20 08:53:20 +09:00
|
|
|
#include <sprout/iterator/remove_iterator.hpp>
|
|
|
|
#include <sprout/iterator/remove_if_iterator.hpp>
|
2013-01-27 16:56:14 +09:00
|
|
|
#include <sprout/iterator/adjacent_filter_iterator.hpp>
|
|
|
|
#include <sprout/iterator/unique_iterator.hpp>
|
|
|
|
#include <sprout/iterator/merge_iterator.hpp>
|
|
|
|
#include <sprout/iterator/set_union_iterator.hpp>
|
|
|
|
#include <sprout/iterator/set_intersection_iterator.hpp>
|
|
|
|
#include <sprout/iterator/set_difference_iterator.hpp>
|
|
|
|
#include <sprout/iterator/set_symmetric_difference_iterator.hpp>
|
2013-01-20 08:53:20 +09:00
|
|
|
#include <sprout/iterator/while_iterator.hpp>
|
2012-11-24 22:46:23 +09:00
|
|
|
#include <sprout/iterator/step_iterator.hpp>
|
2012-11-09 22:33:11 +09:00
|
|
|
#include <sprout/iterator/indexed_iterator.hpp>
|
|
|
|
#include <sprout/iterator/valued_iterator.hpp>
|
2012-11-17 01:59:56 +09:00
|
|
|
#include <sprout/iterator/joint_iterator.hpp>
|
2013-02-26 10:43:27 +09:00
|
|
|
#include <sprout/iterator/insert_range_iterator.hpp>
|
2012-11-25 01:05:11 +09:00
|
|
|
#include <sprout/iterator/alternate_iterator.hpp>
|
2012-09-21 15:43:30 +09:00
|
|
|
#include <sprout/iterator/size_enum_iterator.hpp>
|
2012-09-27 21:26:32 +09:00
|
|
|
#include <sprout/iterator/bytes_iterator.hpp>
|
2013-01-17 03:53:17 +09:00
|
|
|
#include <sprout/iterator/remake_iterator.hpp>
|
2013-08-13 01:55:26 +09:00
|
|
|
#include <sprout/iterator/next_iterator.hpp>
|
2012-09-21 15:43:30 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ITERATOR_ADAPTOR_HPP
|