A type representing continuous, one-dimensional values that can be offset and measured.
オフセットできて計測できる、連続的な、一次元の値を表している型。
Availability
iOS 8.0+
iPadOS 8.0+
macOS 10.10+
Mac Catalyst 13.0+
tvOS 9.0+
watchOS 2.0+
Xcode 6.0.1+
Technology
Swift Standard Library
Swift標準ライブラリ
Declaration
宣言
protocolStrideable
Overview
概要
You can use a type that conforms to the Strideable protocol with the stride(from:to:by:) and stride(from:through:by:) functions. For example, you can use stride(from:to:by:) to iterate over an interval of floating-point values:
あなたは、Strideableプロトコルに準拠する型をstride(from:to:by:)およびstride(from:through:by:)関数で使うことができます。例えば、あなたはstride(from:to:by:)を使って浮動小数点値のある間隔のすべてにわたって反復できます。
The last parameter of these functions is of the associated Stride type—the type that represents the distance between any two instances of the Strideable type.
これらの関数の最後のパラメータは、Stride型 — Strideable型の何らかの2つのインスタンスの間の隔たりを表す型の関連型です。
Types that have an integer Stride can be used as the boundaries of a countable range or as the lower bound of an iterable one-sided range. For example, you can iterate over a range of Int and use sequence and collection methods.
ある整数Strideを持つこれら型は、可付番範囲の境界としてまたは反復可能な片側範囲の下方境界として使われることができます。例えば、あなたはある範囲のIntのすべてに反復してシーケンスおよびコレクションのメソッドを使うことができます。
Conforming to the Strideable Protocol
Strideableプロトコルに準拠する
To add Strideable conformance to a custom type, choose a Stride type that can represent the distance between two instances and implement the advanced(by:) and distance(to:) methods. For example, this hypothetical Date type stores its value as the number of days before or after January 1, 2000:Strideable準拠をあつらえの型に加えるには、2つのインスタンスの間の隔たりを表現可能であるStride型のひとつを選んで、advanced(by:)とdistance(to:)メソッドを実装してください。例えば、この仮説上のDate型は、それの値を2000年1月1日の前または後の日数として格納します:
The Stride type for Date is Int, inferred from the parameter and return types of advanced(by:) and distance(to:):DateのためのStride型はIntです、パラメータと戻り値のadvanced(by:)とdistance(to:)から推論されます:
The Date type can now be used with the stride(from:to:by:) and stride(from:through:by:) functions and as the bounds of an iterable range.Date型は、今ではstride(from:to:by:)およびstride(from:through:by:)関数でそして反復可能な範囲の境界として使用できます。