This struct template implements a meta-function to determine if the (template parameter) t_TYPE is an array type. This struct derives from bsl::true_type if the t_TYPE is an array type, and bsl::false_type otherwise.
Declared in <bslmf_isarray.h>
template<class t_TYPE>
struct IsArray
: bsl::is_array<t_TYPE>::type
Note that although this struct is functionally equivalent to bsl::is_array, the use of bsl::is_array should be preferred.
| Name | Description |
|---|---|
bsl::is_array<t_TYPE>::type |