The upper bound for the range. 範囲の上側の境界。
...(_:)
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
prefix static func ... (maximum: Set
<Element>.Index
) -> PartialRangeThrough
<Set
<Element>.Index
>
Parameters パラメータ
maximum
Discussion 解説
Use the prefix closed range operator (prefix ...
) to create a partial range of any type that conforms to the Comparable
protocol. This example creates a Partial
instance that includes any value less than or equal to 5
.
前置完結範囲演算子(前置...
)を使うことで何らかの型の部分的な範囲でComparable
プロトコルに準拠するものを作成してください。この例は、Partial
インスタンスで5
より少ないか等しい何らかの値を含むものを作成します。
You can use this type of partial range of a collection’s indices to represent the range from the start of the collection up to, and including, the partial range’s upper bound. あなたは、あるコレクションのインデックスからなる、この型の部分的範囲を使うことで、コレクションの始まりからその部分的な範囲の上側の境界までの、そしてそれを含んでいる範囲を表すことができます。
Precondition: maximum
must compare equal to itself (i.e. cannot be NaN).
前提条件:maximum
はそれ自身と等しいと比較されなければなりません(すなわちNaNであることはできません)。