Skip to content

Check whether the data type is a primitive type

Source code

Description

Check whether the data type is a primitive type

Usage

DataType_is_primitive()

Value

A logical value

Examples

library(polars)

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