Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(pluck): remove deprecated pluck operator #7181

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs_app/content/guide/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ These are Observable creation operators that also have join functionality -- emi
- [`mergeScan`](/api/operators/mergeScan)
- [`pairwise`](/api/operators/pairwise)
- [`partition`](/api/operators/partition)
- [`pluck`](/api/operators/pluck)
- [`scan`](/api/operators/scan)
- [`switchScan`](/api/operators/switchScan)
- [`switchMap`](/api/operators/switchMap)
Expand Down
2 changes: 1 addition & 1 deletion docs_app/content/guide/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ fromEvent(document, 'click')
.subscribe((count) => console.log(count));
```

Other value producing operators are [**pluck**](../api/operators/pluck), [**pairwise**](../api/operators/pairwise), [**sample**](../api/operators/sample) etc.
Other value producing operators are [**pairwise**](../api/operators/pairwise), [**sample**](../api/operators/sample) etc.
2 changes: 0 additions & 2 deletions docs_app/tools/decision-tree-generator/src/lib/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export type ApiUnion =
| 'catchError'
| 'combineLatest'
| 'concat'
| 'concat'
| 'concatMap'
| 'concatMapTo'
| 'count'
Expand Down Expand Up @@ -65,7 +64,6 @@ export type ApiUnion =
| 'pairwise'
| 'partition'
| 'pipe'
| 'pluck'
| 'publish'
| 'publishBehavior'
| 'publishLast'
Expand Down
2 changes: 1 addition & 1 deletion docs_app/tools/decision-tree-generator/src/tree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- label: map
- label: I want to pick a property off each emitted value
children:
- label: pluck
- label: map
- label: I want to spy the values being emitted without affecting them
children:
- label: tap
Expand Down
71 changes: 0 additions & 71 deletions spec-dtslint/operators/pluck-spec.ts

This file was deleted.

1 change: 0 additions & 1 deletion spec/index-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ describe('index', () => {
expect(index.multicast).to.exist;
expect(index.observeOn).to.exist;
expect(index.pairwise).to.exist;
expect(index.pluck).to.exist;
expect(index.publish).to.exist;
expect(index.publishBehavior).to.exist;
expect(index.publishLast).to.exist;
Expand Down
1 change: 0 additions & 1 deletion spec/operators/index-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ describe('operators/index', () => {
expect(index.observeOn).to.exist;
expect(index.pairwise).to.exist;
expect(index.partition).to.exist;
expect(index.pluck).to.exist;
expect(index.publish).to.exist;
expect(index.publishBehavior).to.exist;
expect(index.publishLast).to.exist;
Expand Down
272 changes: 0 additions & 272 deletions spec/operators/pluck-spec.ts

This file was deleted.

Loading