novah.number
Function and other numeric constants
Types
Declarations
nan
visibility: public
type: Float64
A constant representing Not-a-Number (Float64)
nanf
visibility: public
type: Float32
A constant representing Not-a-Number (Float32)
positiveInfinity
visibility: public
type: Float64
A constant representing the positive infinity (Float64)
negativeInfinity
visibility: public
type: Float64
A constant representing the negative infinity (Float64)
positiveInfinityF
visibility: public
type: Float32
A constant representing the positive infinity (Float32)
negativeInfinityF
visibility: public
type: Float32
A constant representing the negative infinity (Float32)
parseInt
visibility: public
type: String -> Option Int32
Tries to parse a string to an int in base 10.
parseIntRadix
visibility: public
type: Int32 -> String -> Option Int32
Tries to parse a string to an int in base radix
.
parseInt64
visibility: public
type: String -> Option Int64
Tries to parse a string to an int64 in base 10.
parseInt64Radix
visibility: public
type: Int32 -> String -> Option Int64
Tries to parse a string to an int64 in base radix
.
parseFloat32
visibility: public
type: String -> Option Float32
Tries to parse a string to an float32.
parseFloat64
visibility: public
type: String -> Option Float64
Tries to parse a string to an float64.