Represents an object that performs incremental calculations on two input sequences.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public interface IAccumulator2<T, U, V>
Public Interface IAccumulator2(Of T, U, V)
generic<typename T, typename U, typename V>
public interface class IAccumulator2
type IAccumulator2<'T, 'U, 'V> = interface end
Type Parameters
- T
- The type of the first input to the accumulator.
- U
- The type of the second input to the accumulator.
- V
- The type of the output of the accumulator.
The IAccumulator2T, U, V type exposes the following members.
| Name | Description |
---|
 | CurrentValue |
Gets the current value of the accumulator.
|
 | HasValue |
Gets whether the accumulator has received enough data to compute a value.
|
Top
| Name | Description |
---|
 | Add |
Updates the accumulator with the specified value.
|
 | Remove |
Updates the accumulator by removing the specified value.
|
 | Reset |
Resets the accumulator to its initial state.
|
Top
Reference