Skip to content

Commit

Permalink
docs(skipLast): updated decision tree, MIGRATION.md and operators.md
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsik committed Jan 30, 2017
1 parent 47f5752 commit 0940b14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ enabling "composite" subscription behavior.
|`shareValue`|No longer implemented|
|`singleInstance`|`share`|
|`skipLastWithTime`|No longer implemented|
|`skipLast`|No longer implemented|
|`skipUntilWithTime`|No longer implemented|
|`slice(start, end)`|`skip(start).take(end - start)`|
|`some`|`first(fn, () => true, false)`|
Expand Down
5 changes: 5 additions & 0 deletions doc/decision-tree-widget/tree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ children:
- label: based on custom logic
children:
- label: skipWhile
- label: from the end of the Observable
children:
- label: based on a given amount
children:
- label: skipLast
- label: until another Observable emits a value
children:
- label: skipUntil
Expand Down
1 change: 1 addition & 0 deletions doc/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ There are operators for different purposes, and they may be categorized as: crea
- [`sampleTime`](../class/es6/Observable.js~Observable.html#instance-method-sampleTime)
- [`single`](../class/es6/Observable.js~Observable.html#instance-method-single)
- [`skip`](../class/es6/Observable.js~Observable.html#instance-method-skip)
- [`skipLast`](../class/es6/Observable.js~Observable.html#instance-method-skipLast)
- [`skipUntil`](../class/es6/Observable.js~Observable.html#instance-method-skipUntil)
- [`skipWhile`](../class/es6/Observable.js~Observable.html#instance-method-skipWhile)
- [`take`](../class/es6/Observable.js~Observable.html#instance-method-take)
Expand Down

0 comments on commit 0940b14

Please sign in to comment.