2012-03-31 07:24:13 +00:00
|
|
|
#ifndef SPROUT_CONTAINER_INTERNAL_END_OFFSET_HPP
|
|
|
|
#define SPROUT_CONTAINER_INTERNAL_END_OFFSET_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/container_traits.hpp>
|
|
|
|
#include <sprout/container/end.hpp>
|
|
|
|
#include <sprout/container/internal_begin.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT
|
2012-03-31 07:24:13 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// internal_end_offset
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-07-15 07:04:05 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::container_traits<Container>::difference_type
|
|
|
|
internal_end_offset(Container const& cont) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return NS_SSCRISK_CEL_OR_SPROUT::distance(sprout::internal_begin(cont), sprout::end(cont));
|
2012-03-31 07:24:13 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_INTERNAL_END_OFFSET_HPP
|