## fhirPathArrayEquals() function  
Determines if two arrays are equal according to FHIRPath equality rules.

**Signature:**  
```typescript  
export declare function fhirPathArrayEquals(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 equal.
