Packages

t

fs2.internal.jsdeps.std

NumberConstructor

trait NumberConstructor extends scala.scalajs.js.Object with StObject with Instantiable0[Number] with Instantiable1[Any, Number]

Annotations
@JSType() @native()
Source
NumberConstructor.scala
Linear Supertypes
Instantiable1[Any, Number], Instantiable0[Number], StObject, scala.scalajs.js.Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NumberConstructor
  2. Instantiable1
  3. Instantiable0
  4. StObject
  5. Object
  6. Any
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): scala.Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): scala.Boolean
    Definition Classes
    AnyRef → Any
  4. val EPSILON: Double

    The value of Number.EPSILON is the difference between 1 and the smallest value greater than 1 that is representable as a Number value, which is approximately: 2.2204460492503130808472633361816 x 10‍−‍16.

  5. val MAX_SAFE_INTEGER: Double

    The value of the largest integer n such that n and n + 1 are both exactly representable as a Number value.

    The value of the largest integer n such that n and n + 1 are both exactly representable as a Number value. The value of Number.MAX_SAFE_INTEGER is 9007199254740991 2^53 − 1.

  6. val MAX_VALUE: Double

    The largest number that can be represented in JavaScript.

    The largest number that can be represented in JavaScript. Equal to approximately 1.79E+308.

  7. val MIN_SAFE_INTEGER: Double

    The value of the smallest integer n such that n and n − 1 are both exactly representable as a Number value.

    The value of the smallest integer n such that n and n − 1 are both exactly representable as a Number value. The value of Number.MIN_SAFE_INTEGER is −9007199254740991 (−(2^53 − 1)).

  8. val MIN_VALUE: Double

    The closest number to zero that can be represented in JavaScript.

    The closest number to zero that can be represented in JavaScript. Equal to approximately 5.00E-324.

  9. val NEGATIVE_INFINITY: Double

    A value that is less than the largest negative number that can be represented in JavaScript.

    A value that is less than the largest negative number that can be represented in JavaScript. JavaScript displays NEGATIVE_INFINITY values as -infinity.

  10. val NaN: Double

    A value that is not a number.

    A value that is not a number. In equality comparisons, NaN does not equal any value, including itself. To test whether a value is equivalent to NaN, use the isNaN function.

  11. val POSITIVE_INFINITY: Double

    A value greater than the largest number that can be represented in JavaScript.

    A value greater than the largest number that can be represented in JavaScript. JavaScript displays POSITIVE_INFINITY values as infinity.

  12. def apply(value: Any): Double
  13. def apply(): Double
  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  16. final def eq(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef → Any
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  19. def hasOwnProperty(v: scala.Predef.String): scala.Boolean
    Definition Classes
    Object
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  21. def isFinite(number: Any): scala.Boolean

    Returns true if passed value is finite.

    Returns true if passed value is finite. Unlike the global isFinite, Number.isFinite doesn't forcibly convert the parameter to a number. Only finite values of the type number, result in true.

    number

    A numeric value.

  22. final def isInstanceOf[T0]: scala.Boolean
    Definition Classes
    Any
  23. def isInteger(number: Any): scala.Boolean

    Returns true if the value passed is an integer, false otherwise.

    Returns true if the value passed is an integer, false otherwise.

    number

    A numeric value.

  24. def isNaN(number: Any): scala.Boolean

    Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number).

    Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number). Unlike the global isNaN(), Number.isNaN() doesn't forcefully convert the parameter to a number. Only values of the type number, that are also NaN, result in true.

    number

    A numeric value.

  25. def isPrototypeOf(v: scala.scalajs.js.Object): scala.Boolean
    Definition Classes
    Object
  26. def isSafeInteger(number: Any): scala.Boolean

    Returns true if the value passed is a safe integer.

    Returns true if the value passed is a safe integer.

    number

    A numeric value.

  27. final def ne(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  30. def parseFloat(string: java.lang.String): Double

    Converts a string to a floating-point number.

    Converts a string to a floating-point number.

    string

    A string that contains a floating-point number.

  31. def parseInt(string: java.lang.String, radix: Double): Double
  32. def parseInt(string: java.lang.String): Double

    Converts A string to an integer.

    Converts A string to an integer.

    string

    A string to convert into a number.

  33. def propertyIsEnumerable(v: scala.Predef.String): scala.Boolean
    Definition Classes
    Object
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toLocaleString(): scala.Predef.String
    Definition Classes
    Object
  36. def toString(): java.lang.String
    Definition Classes
    AnyRef → Any
  37. def valueOf(): Any
    Definition Classes
    Object
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Instantiable1[Any, Number]

Inherited from Instantiable0[Number]

Inherited from StObject

Inherited from scala.scalajs.js.Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped