My Project
extent.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_EXTENT_HPP
29 #define BSL_EXTENT_HPP
30 
31 #include "details/extent_base.hpp"
32 
33 namespace bsl
34 {
49  template<typename T, bsl::uintmax N = 0>
50  class extent final : public details::extent_base<T, N>
51  {};
52 }
53 
54 #endif
If T is an array type, provides the member constant value equal to the number of elements along the N...
Definition: extent.hpp:50