Contents

==(_:_:)

Returns a Boolean value indicating whether two containers are equal.

Declaration

static func == (lhs: IntentValueContainer, rhs: IntentValueContainer) -> Bool

Parameters

  • lhs:

    A container to compare.

  • rhs:

    Another container to compare.

Return Value

true if the containers are equal; otherwise, false.

Discussion

Two containers are considered equal if their elements are equal, as determined by the equals(other:) method of the container elements.