Sprout/sprout/fixed_container/fixed_size.hpp

23 lines
665 B
C++
Raw Normal View History

2011-09-01 02:48:32 +00:00
#ifndef SPROUT_FIXED_CONTAINER_FIXED_SIZE_HPP
#define SPROUT_FIXED_CONTAINER_FIXED_SIZE_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/fixed_container/traits.hpp>
namespace sprout {
//
// fixed_size
//
template<typename Container>
struct fixed_size {
public:
2011-09-03 14:44:34 +00:00
SPROUT_STATIC_CONSTEXPR typename sprout::fixed_container_traits<Container>::size_type value
2011-09-01 02:48:32 +00:00
= sprout::fixed_container_traits<Container>::fixed_size
;
typedef std::integral_constant<typename sprout::fixed_container_traits<Container>::size_type, value> type;
};
} // namespace sprout
#endif // #ifndef SPROUT_FIXED_CONTAINER_FIXED_SIZE_HPP