func distance(to: Self) -> Int
Returns the distance from this value to the given value, expressed as a stride.
この値から特定の値までの隔たりを返します、ストライドとして表されます。
Availability
Technology
func distance(to other: Self) -> Self.Stride
other
The value to calculate the distance to. それへの隔たりを計算される値。
The distance from this value to other
.
この値からother
までの隔たり。
If this type’s Stride
type conforms to Binary
, then for two values x
and y
, and a distance n = x
, x
. Using this method with types that have a noninteger Stride
may result in an approximation.
この型のもつStride
型がBinary
に準拠するならば、そのとき2つの値x
とy
、そして隔たりn = x
に対して、x
。このメソッドを非整数Stride
を持つ型とともに使うことは、近似値という結果になるかもしれません。
Complexity: O(1) 計算量:O(1)
func distance(to: Self) -> Int