Skip to content

Commit

Permalink
docs(MIGRATION): update distinctUntilChanged interface change
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj authored and benlesh committed May 2, 2016
1 parent 0f8bf28 commit 7a551cc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,27 @@ To reduce polymorphism and get better performance out of operators, some operato
</table>


## Operator Interface Changes


<table>
<thead>
<tr>
<th></th>
<th>RxJS 4</th>
<th>RxJS 5</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>distinctUntilChanged</code></td>
<td><code>distinctUntilChanged(keySelector: function, comparer: function)</code></td>
<td><code>distinctUntilChanged<T, K>(compare?: (x: K, y: K) => boolean, keySelector?: (x: T) => K): Observable<T></code></td>
</tr>
</tbody>
</table>


## Schedulers Renamed

The names of the Schedulers in RxJS 4 were based off of the Rx.NET implementation. Consequently, some of the names
Expand Down

0 comments on commit 7a551cc

Please sign in to comment.