Documentation
¶
Overview ¶
Package generic contains stream processing functions that * can be called on any kind of data types.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IStream ¶
type IStream interface {
// Add adds a value to the algorithm.
Add(v interface{})
// Remove removes the value from the algorithm.
Remove(v interface{})
// Result produces result of the algorithm and error.
Result() (interface{}, error)
// Reset clears the stream algorithm's inner state.
Reset()
}
IStream defines a streaming data processing math algorithm's interface.
Click to show internal directories.
Click to hide internal directories.