arbitraryPrecision property
bool
get
arbitraryPrecision
Whether or not this Quantity is represented using arbitrary precision.
The values of arbitrarily precise Quantities are stored internally as Precise Number objects.
Arbitrary precision calculations will generally be significantly slower than limited precision (double) calculations because arbitrary precision calculations typically occur in software while double precision calculations often are accelerated directly in hardware.
Implementation
bool get arbitraryPrecision => valueSI is Precise;