A repository of different iterable diffing strategies used by NgFor, NgClass, and others.
Static properties
Property
Description
static ngInjectableDef : defineInjectable({
providedIn: 'root',
factory: () => new IterableDiffers([new DefaultIterableDifferFactory()])
})
Static methods
static create (factories: IterableDifferFactory[], parent?: IterableDiffers): IterableDiffers
static create ( factories : IterableDifferFactory [], parent ?: IterableDiffers ): IterableDiffers
Parameters
Returns
IterableDiffers
Takes an array of IterableDifferFactory
and returns a provider used to extend the
inherited IterableDiffers
instance with the provided factories and return a new
IterableDiffers
instance.
static extend (factories: IterableDifferFactory[]): StaticProvider
static extend ( factories : IterableDifferFactory []): StaticProvider
Parameters
Returns
StaticProvider
Usage Notes
Example
The following example shows how to extend an existing list of factories,
which will only be applied to the injector for this component and its children.
This step is all that's required to make a new IterableDiffer
available.
content_copy
@ Component ({
viewProviders : [
IterableDiffers . extend ([ new ImmutableListDiffer ()])
]
})
Constructor