IterableDiffers
Class
A repository of different iterable diffing strategies used by NgFor, NgClass, and others.
API
class IterableDiffers {}
@paramiterable
any
@returns
IterableDifferFactory
create
@returns
IterableDiffers
extend
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.
@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 {@link IterableDiffer} available.
@Component({ viewProviders: [ IterableDiffers.extend([new ImmutableListDiffer()]) ]})
Jump to details