Type OperatorSwift
==(_:_:)
Returns a Boolean value indicating whether two arrays contain the same elements in the same order.
Available when
Element
conforms toEquatable
static func == (lhs: Array<Element>, rhs: Array<Element>) -> Bool
Parameters
- lhs
An array to compare.
- rhs
Another array to compare.
Overview
You can use the equal-to operator (==
) to compare any two arrays that store the same, Equatable
-conforming element type.