-
- {{item}} ({{index}} of {{count}})
-
-
-```
-
-A `trackBy` function can be specified and works the same as the `*ngFor` `trackBy`. The `index`
-passed to the tracking function will be the index in the data source, not the index in the rendered
-portion.
-
-#### View recycling
-To improve rendering performance, `*cdkVirtualFor` caches previously created views after
-they are no longer needed. When a new view would normally be created, a cached view
-is reused instead. The size of the view cache can be adjusted via the `templateCacheSize`
-property; setting this size to `0` disables caching. If your templates are expensive in terms of
-memory you may wish to reduce this number to avoid spending too much memory on the template cache.
-
-```html
-