## fhirPathArrayEquivalent() function

Determines if two arrays are equivalent according to FHIRPath equality rules.

**Signature:**

```typescript
export declare function fhirPathArrayEquivalent(x: TypedValue[], y: TypedValue[]): TypedValue[];
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| x | [TypedValue](/content/docs/sdk/core.typedvalue) | The first array. |
| y | [TypedValue](/content/docs/sdk/core.typedvalue) | The second array. |

**Returns:**

[TypedValue](/content/docs/sdk/core.typedvalue)

FHIRPath true if the arrays are equivalent.
