Skip to content

Check whether the data type is a float type

Source code

Description

Check whether the data type is a float type

Usage

DataType_is_float()

Value

A logical value

Examples

library(polars)

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