# Functions
ParseType parses a transformation type.
# Structs
Datapoint is a metric data point containing a timestamp in Unix nanoseconds since epoch and a value.
FeatureFlags holds options passed into transformations from the aggregator configuration file.
Op represents a transform operation.
# Interfaces
BinaryTransform is a binary transformation that takes the previous and the current datapoint as input and produces a single datapoint as the transformation result.
UnaryMultiOutputTransform is like UnaryTransform, but can output an additional datapoint.
UnaryTransform is a unary transformation that takes a single datapoint as input and transforms it into a datapoint as output.
# Type aliases
BinaryTransformFn implements BinaryTransform as a function.
Type defines a transformation function.
UnaryMultiOutputTransformFn implements UnaryMultiOutputTransform as a function.
UnaryTransformFn implements UnaryTransform as a function.