init(from: Decoder)
Bound
conforms to Decodable
.
Bound
がDecodable
に準拠する時に利用可能。
Availability
Technology
@frozen struct PartialRangeFrom<Bound> where Bound : Comparable
You create Partial
instances by using the postfix range operator (postfix ...
).
あなたは、Partial
インスタンスを後置範囲演算子(...
)を使って作成します。
You can use a partial range to quickly check if a value is contained in a particular range of values. For example: あなたは、部分範囲を使って、ある値がいくつの値からなる部分範囲に含まれるかどうかを素早く調べることができます。例えば:
You can use a partial range of a collection’s indices to represent the range from the partial range’s lower bound up to the end of the collection. あなたは、あるコレクションのもつインデックスからなる部分範囲を使うことで、その部分範囲の下側の境界からそのコレクションの終わりまでの範囲を表すことができます。
When a partial range uses integers as its lower and upper bounds, or any other type that conforms to the Strideable
protocol with an integer stride, you can use that range in a for
-in
loop or with any sequence method that doesn’t require that the sequence is finite. The elements of a partial range are the consecutive values from its lower bound continuing upward indefinitely.
ある範囲がそれの下側および上側の境界として整数を使う、または整数歩幅を使うStrideable
プロトコルに準拠する何らかの他の型を使う場合、あなたはその範囲をfor
-in
ループにおいて、またはシーケンスが有限であることを必要としない何らかのシーケンスのメソッドで使用できます。部分範囲の要素は、それの下側の境界から無限に上方に続いている隣接範囲です。
Because a Partial
sequence counts upward indefinitely, do not use one with methods that read the entire sequence before returning, such as map(_:)
, filter(_:)
, or suffix(_:)
. It is safe to use operations that put an upper limit on the number of elements they access, such as prefix(_:)
or drop
, and operations that you can guarantee will terminate, such as passing a closure you know will eventually return true
to first(where:)
.
Partial
シーケンスが上向きに無限に数えることから、返す前にシーケンス全体を読み出すメソッド、例えばmap(_:)
、filter(_:)
、またはsuffix(_:)
などを持つものと一緒に使わないでください。安全なのは、上側の限界をそれらがアクセスする要素数に置く演算、例えばprefix(_:)
またはdrop
など、そしてあなたが終わらせることができる演算、例えばあなたが結局はtrue
をfirst(where:)
に返すと知っているクロージャを渡すことなどの使用です。
In the following example, the ascii
sequence is made by zipping together the characters in the alphabet
string with a partial range starting at 65, the ASCII value of the capital letter A. Iterating over two zipped sequences continues only as long as the shorter of the two sequences, so the iteration stops at the end of alphabet
.
以下の例において、ascii
シーケンスは、alphabet
文字列中の文字を65で始まるある部分範囲と一緒に閉じ合わせることによって作られます。2つの閉じ合わされたシーケンスそれらに反復することは、より短いほうと同じだけ続きます、それでこの反復はalphabet
の終わりで停止します。
The behavior of incrementing indefinitely is determined by the type of Bound
. For example, iterating over an instance of Partial
traps when the sequence’s next value would be above Int
.
無限に漸増する挙動は、Bound
の型によって決定されます。例えば、Partial
のインスタンスの全体にわたって反復することは、そのシーケンスの次の値がInt
より上となる場合にトラップします。
init(from: Decoder)
Bound
conforms to Decodable
.
Bound
がDecodable
に準拠する時に利用可能。
func contains(Bound) -> Bool
func encode(to: Encoder)
Bound
conforms to Encodable
.
Bound
がEncodable
に準拠する時に利用可能。
func relative<C>(to: C) -> Range<Bound>
func relative(toShapedArrayAxis : Range<Int>) -> Range<Int>
Bound
is Int
.
Bound
がInt
である時に利用可能です。
static func ~= (PartialRangeFrom<Bound>, Bound) -> Bool
Decodable
Bound
conforms to Decodable
.
Bound
がDecodable
に準拠する時に準拠します。
Encodable
Bound
conforms to Encodable
.
Bound
がEncodable
に準拠する時に準拠します。
MLShapedArrayRangeExpression
Bound
is Int
.
Bound
がInt
である時に準拠します。
RangeExpression
struct PartialRangeUpTo
struct PartialRangeThrough
protocol RangeExpression
enum UnboundedRange_