datatable.Type.is_array

Added in version 1.1.0

Test whether this type belongs to the category of “array” types. This property returns True for arr32(T) and arr64(T) types only.

Parameters

return
bool

Examples

dt.Type.arr32(int).is_array
True
dt.Type.arr64("float32").is_array
True
dt.Type.void.is_array
False