Skip to content

Check if the Series is empty

Source code

Description

Check if the Series is empty

Usage

<series>$_is_empty()

Value

TRUE or FALSE

Examples

library("polars")

s <- pl$Series("a", integer())
s$is_empty()
#> [1] TRUE