Last updated 5 years ago
Was this helpful?
pairwise(): Observable<Array>
Example 1:
( | | )
// RxJS v6+ import { pairwise, take } from 'rxjs/operators'; import { interval } from 'rxjs'; //Returns: [0,1], [1,2], [2,3], [3,4], [4,5] interval(1000) .pipe( pairwise(), take(5) ) .subscribe(console.log);
:newspaper: - Official docs
:file_folder: Source Code: