[#bsl-is_array-06] = xref:bsl.adoc[bsl]::is_array :relfileprefix: ../ :mrdocs: This `struct` template implements the `is_array` meta‐function defined in the C++11 standard [meta.unary.cat]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. == Synopsis Declared in `<bslmf_isarray.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TYPE> struct is_array : xref:bsl/false_type.adoc[false_type] ---- == Base Classes [cols="1,4"] |=== | Name| Description | `xref:bsl/false_type.adoc[false_type]` | Metafunction representing the boolean constant `false`. |=== == Specializations [cols="1,4"] |=== | Name| Description | xref:bsl/is_array-0b.adoc[`is_array<t_TYPE[]>`] | This specialization of `is_array`, for when the (template parameter) `t_TYPE` is an array type of unknown bound, derives from `bsl::true_type`. | xref:bsl/is_array-01.adoc[`is_array<t_TYPE[]>`] | This specialization of `is_array`, for when the (template parameter) `t_TYPE` is an array type of known bound, derives from `bsl::true_type`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#