IterableDiffer
A strategy for tracking changes over time to an iterable. Used by NgForOf
to respond to changes in an iterable by effecting equivalent changes in the DOM.
interface IterableDiffer<V> {
diff(object: NgIterable<V>): IterableChanges<V> | null
}
方法
Compute a difference between the previous state and the new | |||
参数
返回值
|