Help Angular by taking a 1 minute survey!Go to surveyHome

IterableDifferFactory

Provides a factory for IterableDiffer.

      
      interface IterableDifferFactory {
  supports(objects: any): boolean
  create<V>(trackByFn?: TrackByFunction<V>): IterableDiffer<V>
}
    

Methods

supports(objects: any): boolean
      
      supports(objects: any): boolean
    
Parameters
objects any
Returns

boolean

create<V>(trackByFn?: TrackByFunction<V>): IterableDiffer<V>
      
      create<V>(trackByFn?: TrackByFunction<V>): IterableDiffer<V>
    
Parameters
trackByFn TrackByFunction

Optional. Default is undefined.

Returns

IterableDiffer<V>