FloatingPointConstants enum

Critical threshold constants

Inheritance
Available extensions

Values

negativeInfinity → const FloatingPointConstants

The smallest possible number.

negativeZero → const FloatingPointConstants

The number zero, negative form.

positiveZero → const FloatingPointConstants

The number zero, positive form.

smallestPositiveSubnormal → const FloatingPointConstants

Smallest possible number, most exponent negative, LSB set in mantissa.

largestPositiveSubnormal → const FloatingPointConstants

Largest possible subnormal, most negative exponent, mantissa all 1s.

smallestPositiveNormal → const FloatingPointConstants

Smallest possible positive number, most negative exponent, mantissa is 0.

largestLessThanOne → const FloatingPointConstants

Largest number smaller than one.

one → const FloatingPointConstants

The number one.

smallestLargerThanOne → const FloatingPointConstants

Smallest number greater than one.

largestNormal → const FloatingPointConstants

Largest positive number, most positive exponent, full mantissa.

positiveInfinity → const FloatingPointConstants

Largest possible number.

nan → const FloatingPointConstants

Not a Number, demarked by all 1s in exponent and any 1 in mantissa.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<FloatingPointConstants>
A constant List of the values in this enum, in order of their declaration.