package
1.8.14
Repository: https://github.com/lasthyphen/dijetsnodego.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# Functions

No description provided by the author
Add64 returns: 1) a + b 2) If there is overflow, an error Note that we don't have a generic Add function because checking for an overflow requires knowing the max size of a given type, which we don't know if we're adding generic types.
No description provided by the author
No description provided by the author
Mul64 returns: 1) a * b 2) If there is overflow, an error Note that we don't have a generic Mul function because checking for an overflow requires knowing the max size of a given type, which we don't know if we're adding generic types.
No description provided by the author
NewMaxAveragerHeap returns a new empty max heap.
NewMinAveragerHeap returns a new empty min heap.
No description provided by the author
NewUninitializedAverager creates a new averager with the given halflife.
Sub returns: 1) a - b 2) If there is underflow, an error.

# Interfaces

Averager tracks a continuous time exponential moving average of the provided values.
AveragerHeap maintains a heap of the averagers.