MCPcopy Create free account
hub / github.com/angular/components / cdkVirtualForOf

Method cdkVirtualForOf

src/cdk/scrolling/virtual-for-of.ts:100–102  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

98 /** The DataSource to display. */
99 @Input()
100 get cdkVirtualForOf(): DataSource<T> | Observable<T[]> | NgIterable<T> | null | undefined {
101 return this._cdkVirtualForOf;
102 }
103 set cdkVirtualForOf(value: DataSource<T> | Observable<T[]> | NgIterable<T> | null | undefined) {
104 this._cdkVirtualForOf = value;
105 if (isDataSource(value)) {

Callers

nothing calls this directly

Calls 2

isDataSourceFunction · 0.90
nextMethod · 0.45

Tested by

no test coverage detected