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 c6f3ab2 commit d11c562Copy full SHA for d11c562
src/lib/core/data-table/data-table.ts
@@ -104,7 +104,9 @@ export class CdkTable<T> implements CollectionViewer {
104
private _dataDiffer: IterableDiffer<T>;
105
106
/**
107
- * 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
108
+ * to ngFor trackBy function. Optimize row operations by identifying a row based on its data
109
+ * relative to the function to know if a row should be added/removed/moved.
110
* Accepts a function that takes two parameters, `index` and `item`.
111
*/
112
@Input()
0 commit comments