My Project
include
bsl
is_unbounded_array.hpp
Go to the documentation of this file.
1
28
#ifndef BSL_IS_UNBOUNDED_ARRAY_HPP
29
#define BSL_IS_UNBOUNDED_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_unbounded_array
final :
public
false_type
50
{};
51
53
54
template
<
typename
T>
55
class
is_unbounded_array
<T[]> final :
public
true_type
// NOLINT
56
{};
57
59
}
60
61
#endif
true_type.hpp
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
bsl::is_unbounded_array
If the provided type is an unbounded array, provides the member constant value equal to true....
Definition:
is_unbounded_array.hpp:49
false_type.hpp
Generated by
1.8.15