ConcatTransform
open class ConcatTransform : TransformValue, @unchecked Sendable
Represents the ‘concat’ transformation.
-
Adds new aggregate items to the tranform instance.
Declaration
Swift
open func aggregate(_ items: AggregateValue...) -> ConcatTransformParameters
rest_itemsThe transform items to be added.
Return Value
The tranform instance
-
Adds new aggregate item list to the tranform instance.
Declaration
Swift
open func aggregateList(items: AggregateValueList) -> ConcatTransformParameters
itemsThe transform items to be added.
Return Value
The tranform instance.
-
Declaration
Swift
override open func copyMutable() -> DataValueReturn Value
A clone of this value if it (together with all value subcomponents) is possibly mutable, or return
selfvalue if it (together with all value subcomponents) is definitely immutable. The resulting value might share mutable metadata with this query. -
Adds new transformations to the ConcatTransform.
Declaration
Swift
open class func create(_ items: TransformValue...) -> ConcatTransformParameters
rest_itemsThe transformations to be added.
Return Value
The concat transform.
-
Adds new transformation list to the ConcatTransform.
Declaration
Swift
open class func createWith(_ items: TransformValueList) -> ConcatTransformParameters
itemsThe transformations to be added.
Return Value
The concat transform.
-
Adds new transform items to the tranform instance.
Declaration
Swift
open func transform(_ items: TransformValue...) -> ConcatTransformParameters
rest_itemsThe transform items to be added.
Return Value
The transform instance.
-
Adds new transform itemlist to the tranform instance.
Declaration
Swift
open func transformList(items: TransformValueList) -> ConcatTransformParameters
itemsThe transform items to be added.
Return Value
The transform instance.
-
The list of transformations to be concatenated.
Declaration
Swift
public final var transformValues: TransformValueList { get set }