Skip to content

Check whether the data type is a signed integer type

Source code

Description

Check whether the data type is a signed integer type

Usage

DataType_is_signed_integer()

Value

A logical value

Examples

library("polars")

pl$Int32$is_signed_integer()
#> [1] TRUE
pl$UInt32$is_signed_integer()
#> [1] FALSE