The position after the element to create an index for. それに対するインデックスを作成する要素の後の位置。
Initializer
init(_:)
Creates a new index into a reversed collection for the position before the specified index.
逆にされたコレクションへのある新しいインデックスを、指定されたインデックスの前の位置に対して、作成します。
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 宣言
init(_ base: Base.Index
)
Parameters パラメータ
base
Discussion 解説
When you create an index into a reversed collection using base
, an index from the underlying collection, the resulting index is the position of the element before the element referenced by base
. The following example creates a new Reversed
from the index of the "a"
character in a string’s character view.
あなたが逆にされたコレクションへのインデックスを、基礎をなすコレクションからのインデックスbase
を使って作成する時、結果のインデックスはbase
によって参照される要素の前の要素の位置です。以下の例は、新しいReversed
を、文字列の文字ビューの中の"a"
文字のインデックスから作成します。
The element at the position created using Reversed
is "r"
, the character before "a"
in the name
string.
Reversed
を使って作成された位置での要素は、"r"
、name
文字列の中の"a"
の前の文字です。