BloomF64Value class

64-bit floating point value expression wrapper.

Example:

const val = BloomF64Value(3.14);
assert(val.raw == 3.14);
Inheritance

Constructors

BloomF64Value(double value)
Creates a floating point BloomValue wrapping value.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
raw double
Unwraps the underlying raw Dart value (e.g. int, String, List<dynamic>, or null).
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value double
The underlying floating point value.
final

Methods

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

Operators

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