Skip to content

Check whether the data type is a nested type

Source code

Description

Check whether the data type is a nested type

Usage

DataType_is_nested()

Value

A logical value

Examples

library(polars)

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