Skip to content

Check whether the data type is a list type

Source code

Description

Check whether the data type is a list type

Usage

DataType_is_list()

Value

A logical value

Examples

library(polars)

pl$List()$is_list()
#> [1] TRUE
pl$Float32$is_list()
#> [1] FALSE