Skip to content

Check whether the data type is an integer type

Source code

Description

Check whether the data type is an integer type

Usage

DataType_is_integer()

Value

A logical value

Examples

library(polars)

pl$Int32$is_integer()
#> [1] TRUE
pl$Float32$is_integer()
#> [1] FALSE