Idris2Doc : JS.Number

JS.Number

(source)

Definitions

dataJSInt64 : Type
  A 64-bit signed integer in the range [-9223372036854775808,9223372036854775807]

This corresponds to the `Long Long` WebIDL type.
Internally, the number is represented by a
Javascript `Number`.
Note, that arithmetic operations on this type might result
in rounding errors, since values might be outside the range
of safe integral arithmetics (up to 2^53). Use this type only for
interacting with external API requiring values of this type.

Totality: total
Visibility: export
Hints:
EqJSInt64
FromFFIJSInt64JSInt64
IntegralJSInt64
NegJSInt64
NumJSInt64
OrdJSInt64
SafeCastJSInt64
ShowJSInt64
ToFFIJSInt64JSInt64
fromJSInt64 : JSInt64->Double
Totality: total
Visibility: export
dataJSBits64 : Type
  A 64-bit unsigned integer in the range [0,18446744073709551615].

This corresponds to the `Unsigned Long Long` WebIDL type.
Internally, the number is represented by a Javascript `Number`.
Note, that this type is therefore susceptible to
rounding errors, since values might be outside the range
of safe integral arithmetics (up to 2^53). Use this type only for
interacting with external API requiring values of this type.

Totality: total
Visibility: export
Hints:
EqJSBits64
FromFFIJSBits64JSBits64
IntegralJSBits64
NumJSBits64
OrdJSBits64
SafeCastJSBits64
ShowJSBits64
ToFFIJSBits64JSBits64
fromUInt64 : JSBits64->Double
Totality: total
Visibility: export