The range to clamp the bounds of this range. この範囲に制限を課すための範囲。
Instance Method
インスタンスメソッド
clamped(to:)
Returns a copy of this range clamped to the given limiting range.
与えられた限界範囲に締め金具で留められる(制限を課される)、この範囲のコピーを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
limits
Return Value 戻り値
A new range clamped to the bounds of limits
.
limits
の境界内に制限された、新しい範囲。
Discussion 解説
The bounds of the result are always limited to the bounds of limits
. For example:
結果の領域は、常にlimits
の領域に制限されます。例えば:
If the two ranges do not overlap, the result is an empty range within the bounds of limits
.
2つの範囲が重ならないならば、結果はlimits
の境界内の空の範囲です。