We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4754608 commit 520b17cCopy full SHA for 520b17c
src/lib/core/data-table/data-table.ts
@@ -94,7 +94,9 @@ export class CdkTable<T> implements CollectionViewer {
94
private _dataDiffer: IterableDiffer<T> = null;
95
96
/**
97
- * Tracking function that will be used to check the differences in data changes.
+ * Tracking function that will be used to check the differences in data changes. Used similarly
98
+ * to ngFor trackBy function. Optimize row operations by identifying a row based on its data
99
+ * relative to the function to know if a row should be added/removed/moved.
100
* Accepts a function that takes two parameters, `index` and `item`.
101
*/
102
@Input()
0 commit comments