math

math.inf

math.inf represents the positive infinitive real number. The result is equivalent to float ("inf") .

Submitted by admin on Tue, 01/19/2021 - 12:07

math.isinf

The math.isinf function returns the Boolean True if the number passed as an argument is infinite (either positive or negative), or False otherwise.

Submitted by admin on Tue, 01/19/2021 - 11:29

math.floor

The math.floor function returns the integer closest to argument passed that is less than or equal to it.

Submitted by admin on Tue, 01/19/2021 - 10:40

math.ceil

The math.ceil function returns the integer closest to the argument passed that is greater than or equal to it.

Submitted by admin on Tue, 01/19/2021 - 10:27