# AUR6005

## Error Message

`AUR6005: Unable to find a strategy for collection type: {{type}}. Supported types: Array, null/undefined.`

Where `{{type}}` is the runtime type name/description of the provided collection.

## Description

This error occurs when `virtual-repeat` is given a collection type it doesn’t know how to virtualize.

## Example Trigger

```ts
export class MyList {
  // ❌ Map is not supported by the default strategy set
  items = new Map<string, unknown>();
}
```

```html
<template>
  <div virtual-repeat.for="item of items">${item}</div>
</template>
```

## Correct Usage

* Use an `Array` as the source for `virtual-repeat` (convert other structures to an array).

```ts
export class MyList {
  private readonly map = new Map<string, unknown>();

  get items() {
    return [...this.map.values()];
  }
}
```

## Troubleshooting

* Log the value you bind to `virtual-repeat.for` and verify it is an `Array`.
* If you need to virtualize a custom collection type, look for (or implement) a supported collection strategy for that type.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aurelia.io/developer-guides/error-messages/ui-virtualization/aur6005.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
