Constants
Float constants.
epsilon
RES
let epsilon: floatRepresents the difference between 1 and the smallest floating point number greater than 1.
See Number.EPSILON on MDN.
Examples
RESFloat.Constants.epsilon
maxValue
RES
let maxValue: floatThe maximum positive numeric value representable in JavaScript.
See Number.MAX_VALUE on MDN.
Examples
RESFloat.Constants.minValue
minValue
RES
let minValue: floatThe smallest positive numeric value representable in JavaScript.
See Number.MIN_VALUE on MDN.
Examples
RESFloat.Constants.minValue
nan
RES
let nan: floatnegativeInfinity
RES
let negativeInfinity: floatThe negative Infinity value
See Number.NEGATIVE_INFINITY on MDN.
Examples
RESFloat.Constants.negativeInfinity
positiveInfinity
RES
let positiveInfinity: floatThe positive Infinity value
See Number.POSITIVE_INFINITY on MDN.
Examples
RESFloat.Constants.positiveInfinity