This is the archived documentation for Angular v5. Please visit angular.io to see documentation for the current version of Angular.

IterableDifferFactory

npm Package @angular/core
Module import { IterableDifferFactory } from '@angular/core';
Source core/src/change_detection/differs/iterable_differs.ts

Interface Overview

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

Description

Provides a factory for IterableDiffer.

Members

      
      supports(objects: any): boolean
    

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