Skip to content

Check whether the data type is an unsigned integer type

Source code

Description

Check whether the data type is an unsigned integer type

Usage

DataType_is_unsigned_integer()

Value

A logical value

Examples

library(polars)

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