An array to compare. 比較する配列。
Operator
演算子
==(_:
==(_:_:)
Returns a Boolean value indicating whether two arrays contain the same elements in the same order.
2つの配列が同じ要素を同じ順序で含むかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func == (lhs: ArraySlice
<Element>, rhs: ArraySlice
<Element>) -> Bool
Available when
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
Parameters パラメータ
lhs
rhs
Another array to compare. 比較するもう一方の配列。
Discussion 解説
You can use the equal-to operator (==
) to compare any two arrays that store the same, Equatable
-conforming element type.
あなたは、同等演算子(==
)を使って同じ、Equatable
準拠の、要素型を格納する任意の2つの配列を比較できます。