Skip to content

Check whether the data type is an array type

Source code

Description

Check whether the data type is an array type

Usage

DataType_is_array()

Value

A logical value

Examples

library(polars)

pl$Array(width = 2)$is_array()
#> [1] TRUE
pl$Float32$is_array()
#> [1] FALSE