---
title: "==(_:_:)"
framework: appintents
role: symbol
role_heading: Operator
path: "appintents/intentvaluecontainer/==(_:_:)"
---

# ==(_:_:)

Returns a Boolean value indicating whether two containers are equal.

## Declaration

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

## Parameters

- `lhs`: A container to compare.
- `rhs`: Another container to compare.

## Return Value

Return Value true if the containers are equal; otherwise, false.

## Discussion

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