Generic Structure

PartialRangeUpTo

A partial half-open interval up to, but not including, an upper bound. 上側の境界までの、しかしそれを含まない部分的半開間隔。

Declaration 宣言

@frozen struct PartialRangeUpTo<Bound> where Bound : Comparable

Overview 概要

You create PartialRangeUpTo instances by using the prefix half-open range operator (prefix ..<). あなたは、PartialRangeUpToインスタンスを後置範囲演算子(..<)を使って作成します。


let upToFive = ..<5.0

You can use a PartialRangeUpTo instance to quickly check if a value is contained in a particular range of values. For example: あなたはPartialRangeUpToインスタンスを使うことで、ある値が特定の範囲に属するいくつかの値の中に含まれているかどうか素早く調べることができます。例えば:


upToFive.contains(3.14)       // true
upToFive.contains(6.28)       // false
upToFive.contains(5.0)        // false

You can use a PartialRangeUpTo instance of a collection’s indices to represent the range from the start of the collection up to, but not including, the partial range’s upper bound. あなたは、あるコレクションのインデックスからなる、PartialRangeUpToインスタンスを使うことで、コレクションの始まりからこの部分範囲の上側の境界までの、そしてそれを含んでいる範囲を表すことができます。


let numbers = [10, 20, 30, 40, 50, 60, 70]
print(numbers[..<3])
// Prints "[10, 20, 30]"

Topics 話題

Initializers イニシャライザ

Instance Properties 様々なインスタンスプロパティ

Instance Methods インスタンスメソッド

Operator Functions 演算子関数

Relationships 関係

Conforms To 次に準拠

  • Decodable
    Conforms when Bound conforms to Decodable. BoundDecodableに準拠する時に準拠します。
  • Encodable
    Conforms when Bound conforms to Encodable. BoundEncodableに準拠する時に準拠します。
  • MLShapedArrayRangeExpression
    Conforms when Bound is Int. BoundIntである時に準拠します。
  • RangeExpression

See Also 参照

Range Expressions 範囲式