Documentation ¶
Index ¶
- func ApproximateQuantiles[T any](s beam.Scope, c gleam.PCollection[T], less func(a, b T) bool, opt stats.Opts) gleam.PCollection[T]
- func ApproximateWeightedQuantiles[T any](s beam.Scope, c gleam.PCollection[T], less func(a, b T) bool, opt stats.Opts) gleam.PCollection[T]
- func Count[T any](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[gleam.KV[T, int]]
- func CountElms[T any](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[int]
- func Max[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
- func MaxPerKey[A Numeric, B any](s beam.Scope, c gleam.PCollection[gleam.KV[A, B]]) gleam.PCollection[gleam.KV[A, B]]
- func Mean[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
- func MeanPerKey[A Numeric, B any](s beam.Scope, c gleam.PCollection[gleam.KV[A, B]]) gleam.PCollection[gleam.KV[A, B]]
- func Min[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
- func MinPerKey[A Numeric, B any](s beam.Scope, c gleam.PCollection[gleam.KV[A, B]]) gleam.PCollection[gleam.KV[A, B]]
- func Sum[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
- func SumPerKey[A Numeric, B any](s beam.Scope, c gleam.PCollection[gleam.KV[A, B]]) gleam.PCollection[gleam.KV[A, B]]
- type Numeric
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ApproximateQuantiles ¶
func ApproximateQuantiles[T any](s beam.Scope, c gleam.PCollection[T], less func(a, b T) bool, opt stats.Opts) gleam.PCollection[T]
func ApproximateWeightedQuantiles ¶
func ApproximateWeightedQuantiles[T any](s beam.Scope, c gleam.PCollection[T], less func(a, b T) bool, opt stats.Opts) gleam.PCollection[T]
func Count ¶
func Count[T any](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[gleam.KV[T, int]]
func CountElms ¶
func CountElms[T any](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[int]
func Max ¶
func Max[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
func Mean ¶
func Mean[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
func MeanPerKey ¶
func Min ¶
func Min[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
func Sum ¶
func Sum[T Numeric](s beam.Scope, c gleam.PCollection[T]) gleam.PCollection[T]
Types ¶
type Numeric ¶
type Numeric interface { constraints.Integer | constraints.Float }
Click to show internal directories.
Click to hide internal directories.