BigByteStats class
Statistical utilities operating on very large byte magnitudes using BigInt.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- 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
Static Methods
-
average(
Iterable< Object?> values) → double - Arithmetic mean (double) of values treated as bytes.
-
histogram(
Iterable< Object?> values, {required List<BigInt> buckets}) → BigHistogram -
Builds a histogram for BigInt magnitudes with
bucketsas upper bounds. Builds a histogram ofvaluesusing BigIntbucketsas inclusive upper bounds. The final bucket is an open-ended tail. -
percentile(
Iterable< Object?> values, double percentile) → double - Percentile (0..100) over BigInt magnitudes using weighted approach.
-
sum(
Iterable< Object?> values) → BigInt - Sum of values treated as bytes, returned as BigInt.