Aggregate

public enum Aggregate

Aggregate type

  • average of a set.

    Declaration

    Swift

    case average
  • number of items in a set

    Declaration

    Swift

    case count
  • sum

    sum of values in a set.

    Declaration

    Swift

    case sum
  • max

    maximum value in a set.

    Declaration

    Swift

    case max
  • min

    minimum value in a set.

    Declaration

    Swift

    case min