My Project
include
bsl
is_bounded_array.hpp
Go to the documentation of this file.
1
28
#ifndef BSL_IS_BOUNDED_ARRAY_HPP
29
#define BSL_IS_BOUNDED_ARRAY_HPP
30
31
#include "
cstdint.hpp
"
32
#include "
true_type.hpp
"
33
#include "
false_type.hpp
"
34
35
namespace
bsl
36
{
48
template
<
typename
T>
49
class
is_bounded_array
final :
public
false_type
50
{};
51
53
54
template
<
typename
T, bsl::u
int
max N>
55
class
is_bounded_array
<T[N]> final :
public
true_type
// NOLINT
56
{};
57
59
}
60
61
#endif
true_type.hpp
bsl::is_bounded_array
If the provided type is an bounded array, provides the member constant value equal to true....
Definition:
is_bounded_array.hpp:49
cstdint.hpp
bsl::integral_constant
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition:
integral_constant.hpp:45
false_type.hpp
Generated by
1.8.15