AggregateFrom

open class AggregateFrom : ObjectBase, @unchecked Sendable

Represents the ‘from’ clause in an aggregate transformation.

  • Declaration

    Swift

    open func copyMutable() -> AggregateFrom

    Return Value

    a copy of this item which doesn’t share mutable values with this item.

  • Creates a ‘from’ clause to the aggregate transformation.

    Declaration

    Swift

    open class func create(method: AggregateMethod?, items: PropertyPathList) throws -> AggregateFrom

    Parameters

    method

    The aggregate method for the ‘from’ clause.

    items

    The list of property paths for the ‘from’ clause.

    Return Value

    The ‘from’ clause for an aggregate transformation value.

  • Aggregate method of the From clause in the Aggregate item

    Declaration

    Swift

    @inline(__always)
    public final var method: AggregateMethod? { get }
  • The list of property paths for From clause in the Aggregate item

    Declaration

    Swift

    public final var propertyPaths: PropertyPathList { get }