SkipTransform
open class SkipTransform : TransformValue, @unchecked Sendable
Represents the ‘skip’ transformation.
-
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. -
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) -> SkipTransformParameters
countThe count of the items to be skipped.
Return Value
The ‘skip’ transformation.