Initializer

init(_:)

Creates an AnyBidirectionalCollection having the same underlying collection as other. AnyBidirectionalCollectionを作成します、otherと同じ基礎をなすコレクションを持っています。

Declaration 宣言

init?(_ other: AnyCollection<Element>)

Discussion 解説

If the underlying collection stored by other does not satisfy BidirectionalCollection, the result is nil. otherによって格納される基礎をなすコレクションがBidirectionalCollectionの条件を満たさないならば、結果はnilです。

Complexity: O(1) 計算量:O(1)