mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
|
#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>
|
||
|
#include <sprout/container/internal.hpp>
|
||
|
#include <sprout/container/begin.hpp>
|
||
|
#include <sprout/container/get_internal.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
//
|
||
|
// internal_begin
|
||
|
//
|
||
|
template<typename Container>
|
||
|
typename sprout::container_traits<
|
||
|
typename std::remove_reference<
|
||
|
typename sprout::containers::internal<Container&>::type
|
||
|
>::type
|
||
|
>::iterator internal_begin(Container& cont) {
|
||
|
return sprout::begin(sprout::get_internal(cont));
|
||
|
}
|
||
|
template<typename Container>
|
||
|
SPROUT_CONSTEXPR typename sprout::container_traits<
|
||
|
typename std::remove_reference<
|
||
|
typename sprout::containers::internal<Container const&>::type
|
||
|
>::type
|
||
|
>::const_iterator internal_begin(Container const& cont) {
|
||
|
return sprout::begin(sprout::get_internal(cont));
|
||
|
}
|
||
|
|
||
|
//
|
||
|
// internal_cbegin
|
||
|
//
|
||
|
template<typename Container>
|
||
|
SPROUT_CONSTEXPR typename sprout::container_traits<
|
||
|
typename std::remove_reference<
|
||
|
typename sprout::containers::internal<Container const&>::type
|
||
|
>::type
|
||
|
>::const_iterator internal_cbegin(Container const& cont) {
|
||
|
return sprout::begin(sprout::get_internal(cont));
|
||
|
}
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_CONTAINER_INTERNAL_BEGIN_HPP
|