Generic Structure

PartialRangeThrough

A partial interval up to, and including, an upper bound. ある上側の境界までの、そしてそれを含んでいる部分的な間隔。

Declaration 宣言

@frozen struct PartialRangeThrough<Bound> where Bound : Comparable

Overview 概要

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


let throughFive = ...5.0

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


throughFive.contains(4.0)     // true
throughFive.contains(5.0)     // true
throughFive.contains(6.0)     // false

You can use a PartialRangeThrough instance 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. あなたは、あるコレクションのインデックスからなる、PartialRangeThroughインスタンスを使うことで、コレクションの始まりからこの部分範囲の上側の境界までの、そしてそれを含んでいる範囲を表すことができます。


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

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 範囲式