Lipi Reference Lipi

Functions

int()

Converts a value to an int. Four overloads, one per form type, and the form you pass in is the form you get back. This one accepts an int only.

Syntax · 1 of 4

                int(const int value) → const int
              

Arguments

value required const int The value to convert. Required. An int in any form.

Return Type

const int

Syntax · 2 of 4

                int(input int value) → input int
              

Arguments

value required input int The value to convert. Required. An int in any form.

Return Type

input int

Syntax · 3 of 4

                int(simple int value) → simple int
              

Arguments

value required simple int The value to convert. Required. An int in any form.

Return Type

simple int

Syntax · 4 of 4

                int(series int value) → series int
              

Arguments

value required series int The value to convert. Required. An int in any form.

Return Type

series int