AggregateFrom
open class AggregateFrom : ObjectBase, @unchecked Sendable
Represents the ‘from’ clause in an aggregate transformation.
-
Declaration
Swift
open func copyMutable() -> AggregateFromReturn 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 -> AggregateFromParameters
methodThe aggregate method for the ‘from’ clause.
itemsThe 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 }