SkipTransform

open class SkipTransform : TransformValue, @unchecked Sendable

Represents the ‘skip’ transformation.

  • 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.

  • The count of the result to be skipped.

    Declaration

    Swift

    @inline(__always)
    public final var count: Int { get }
  • Creates a ‘skip’ transformation.

    Declaration

    Swift

    open class func skip(_ count: Int) -> SkipTransform

    Parameters

    count

    The count of the items to be skipped.

    Return Value

    The ‘skip’ transformation.