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...) -> ConcatTransform

    Parameters

    rest_items

    The 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) -> ConcatTransform

    Parameters

    items

    The transform items to be added.

    Return Value

    The tranform instance.

  • Declaration

    Swift

    override open func copyMutable() -> DataValue

    Return Value

    A clone of this value if it (together with all value subcomponents) is possibly mutable, or return self value 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...) -> ConcatTransform

    Parameters

    rest_items

    The transformations to be added.

    Return Value

    The concat transform.

  • Adds new transformation list to the ConcatTransform.

    Declaration

    Swift

    open class func createWith(_ items: TransformValueList) -> ConcatTransform

    Parameters

    items

    The transformations to be added.

    Return Value

    The concat transform.

  • Adds new transform items to the tranform instance.

    Declaration

    Swift

    open func transform(_ items: TransformValue...) -> ConcatTransform

    Parameters

    rest_items

    The 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) -> ConcatTransform

    Parameters

    items

    The 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 }