Skip to content

Test if the object is a polars Series

Source code

Description

This function tests if the object is a polars Series.

Usage

is_polars_series(x)

Arguments

x An object

Value

A logical value

Examples

library(polars)

is_polars_series(1:3)
#> [1] FALSE
is_polars_series(as_polars_series(1:3))
#> [1] TRUE