Skip to content

Check whether the data type is a null type

Source code

Description

Check whether the data type is a null type

Usage

DataType_is_null()

Value

A logical value

Examples

library(polars)

pl$Null$is_null()
#> [1] TRUE
pl$Float32$is_null()
#> [1] FALSE