Sprout/sprout/fixed_container/size.hpp

21 lines
661 B
C++
Raw Normal View History

2011-09-01 02:48:32 +00:00
#ifndef SPROUT_FIXED_CONTAINER_SIZE_HPP
#define SPROUT_FIXED_CONTAINER_SIZE_HPP
#include <sprout/config.hpp>
#include <sprout/fixed_container/traits.hpp>
#include <sprout/fixed_container/begin.hpp>
#include <sprout/fixed_container/end.hpp>
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL
namespace sprout {
//
// size
//
template<typename Range>
2011-09-25 16:56:47 +00:00
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Range>::difference_type size(Range const& range) {
2011-09-01 02:48:32 +00:00
return NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(sprout::begin(range), sprout::end(range));
}
} // namespace sprout
#endif // #ifndef SPROUT_FIXED_CONTAINER_SIZE_HPP