2012-03-31 07:24:13 +00:00
|
|
|
#ifndef SPROUT_CONTAINER_INTERNAL_BEGIN_HPP
|
|
|
|
#define SPROUT_CONTAINER_INTERNAL_BEGIN_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/container_traits.hpp>
|
|
|
|
#include <sprout/container/sub_container_traits.hpp>
|
2013-02-26 01:43:27 +00:00
|
|
|
#include <sprout/container/deep_internal.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/begin.hpp>
|
2013-02-26 01:43:27 +00:00
|
|
|
#include <sprout/container/get_deep_internal.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// internal_begin
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
typename sprout::container_traits<
|
|
|
|
typename std::remove_reference<
|
2013-02-26 01:43:27 +00:00
|
|
|
typename sprout::containers::deep_internal<Container&>::type
|
2012-03-31 07:24:13 +00:00
|
|
|
>::type
|
2012-10-05 15:58:56 +00:00
|
|
|
>::iterator
|
|
|
|
internal_begin(Container& cont) {
|
2013-02-26 01:43:27 +00:00
|
|
|
return sprout::begin(sprout::get_deep_internal(cont));
|
2012-03-31 07:24:13 +00:00
|
|
|
}
|
|
|
|
template<typename Container>
|
2012-07-15 07:04:05 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<
|
2012-03-31 07:24:13 +00:00
|
|
|
typename std::remove_reference<
|
2013-02-26 01:43:27 +00:00
|
|
|
typename sprout::containers::deep_internal<Container const&>::type
|
2012-03-31 07:24:13 +00:00
|
|
|
>::type
|
2012-10-05 15:58:56 +00:00
|
|
|
>::const_iterator
|
|
|
|
internal_begin(Container const& cont) {
|
2013-02-26 01:43:27 +00:00
|
|
|
return sprout::begin(sprout::get_deep_internal(cont));
|
2012-03-31 07:24:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// internal_cbegin
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-07-15 07:04:05 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<
|
2012-03-31 07:24:13 +00:00
|
|
|
typename std::remove_reference<
|
2013-02-26 01:43:27 +00:00
|
|
|
typename sprout::containers::deep_internal<Container const&>::type
|
2012-03-31 07:24:13 +00:00
|
|
|
>::type
|
2012-10-05 15:58:56 +00:00
|
|
|
>::const_iterator
|
|
|
|
internal_cbegin(Container const& cont) {
|
2013-02-26 01:43:27 +00:00
|
|
|
return sprout::begin(sprout::get_deep_internal(cont));
|
2012-03-31 07:24:13 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_INTERNAL_BEGIN_HPP
|