Module : lang.int

Version : 1.1.0

Module Overview

This module provides lang library operations on int values defined by the language specification 2020R1.

Functions

abs
I

Returns absolute value of an int.

fromHexString
I

Returns the integer that s represents in hexadecimal.

fromString
I

Returns the integer that s represents in decimal.

max
I

Maximum of one or more int values.

min
I

Minimum of one or more int values

sum
I

Returns sum of zero or more int values.

toHexString
I

Returns representation of n as hexdecimal string.

Constants

MAX_VALUE

Maximum value of type int.

MIN_VALUE

Minimum value of type int.

SIGNED32_MAX_VALUE

Maximum value of type Signed32.

SIGNED32_MIN_VALUE

Minimum value of type Signed32.

SIGNED16_MAX_VALUE

Maximum value of type Signed16.

SIGNED16_MIN_VALUE

Minimum value of type Signed16.

SIGNED8_MAX_VALUE

Maximum value of type Signed8.

SIGNED8_MIN_VALUE

Minimum value of type Signed8.

UNSIGNED32_MAX_VALUE

Maximum value of type Unsigned32.

UNSIGNED16_MAX_VALUE

Maximum value of type Unsigned16.

UNSIGNED8_MAX_VALUE

Maximum value of type Unsigned8.