Skip to content

Commit a1b6d8b

Browse files
committed
prep. 2.4.0
1 parent b7abf2d commit a1b6d8b

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

lib/src/selectors.dart

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import 'dart:async';
22

3-
import 'package:meta/meta.dart';
43
import 'package:rxdart_ext/state_stream.dart';
54

65
import 'store.dart';
@@ -31,7 +30,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
3130
/// Observe a value of type [Result] exposed from a state stream, and listen only partially to changes.
3231
///
3332
/// The returned Stream is a single-subscription Stream.
34-
@useResult
3533
StateStream<Result> select<Result>(
3634
Selector<State, Result> selector, {
3735
Equals<Result>? equals,
@@ -41,7 +39,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
4139
/// Select two sub states and combine them by [projector].
4240
///
4341
/// The returned Stream is a single-subscription Stream.
44-
@useResult
4542
StateStream<Result> select2<SubState1, SubState2, Result>(
4643
Selector<State, SubState1> selector1,
4744
Selector<State, SubState2> selector2,
@@ -63,7 +60,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
6360
/// Select three sub states and combine them by [projector].
6461
///
6562
/// The returned Stream is a single-subscription Stream.
66-
@useResult
6763
StateStream<Result> select3<SubState1, SubState2, SubState3, Result>(
6864
Selector<State, SubState1> selector1,
6965
Selector<State, SubState2> selector2,
@@ -91,7 +87,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
9187
/// Select four sub states and combine them by [projector].
9288
///
9389
/// The returned Stream is a single-subscription Stream.
94-
@useResult
9590
StateStream<Result>
9691
select4<SubState1, SubState2, SubState3, SubState4, Result>(
9792
Selector<State, SubState1> selector1,
@@ -128,7 +123,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
128123
/// Select five sub states and combine them by [projector].
129124
///
130125
/// The returned Stream is a single-subscription Stream.
131-
@useResult
132126
StateStream<Result>
133127
select5<SubState1, SubState2, SubState3, SubState4, SubState5, Result>(
134128
Selector<State, SubState1> selector1,
@@ -179,7 +173,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
179173
/// Select five sub states and combine them by [projector].
180174
///
181175
/// The returned Stream is a single-subscription Stream.
182-
@useResult
183176
StateStream<Result> select6<SubState1, SubState2, SubState3, SubState4,
184177
SubState5, SubState6, Result>(
185178
Selector<State, SubState1> selector1,
@@ -236,7 +229,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
236229
/// Select seven sub states and combine them by [projector].
237230
///
238231
/// The returned Stream is a single-subscription Stream.
239-
@useResult
240232
StateStream<Result> select7<SubState1, SubState2, SubState3, SubState4,
241233
SubState5, SubState6, SubState7, Result>(
242234
Selector<State, SubState1> selector1,
@@ -299,7 +291,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
299291
/// Select eight sub states and combine them by [projector].
300292
///
301293
/// The returned Stream is a single-subscription Stream.
302-
@useResult
303294
StateStream<Result> select8<SubState1, SubState2, SubState3, SubState4,
304295
SubState5, SubState6, SubState7, SubState8, Result>(
305296
Selector<State, SubState1> selector1,
@@ -368,7 +359,6 @@ extension SelectorsExtension<Action, State> on RxReduxStore<Action, State> {
368359
/// Select nine sub states and combine them by [projector].
369360
///
370361
/// The returned Stream is a single-subscription Stream.
371-
@useResult
372362
StateStream<Result> select9<SubState1, SubState2, SubState3, SubState4,
373363
SubState5, SubState6, SubState7, SubState8, SubState9, Result>(
374364
Selector<State, SubState1> selector1,

0 commit comments

Comments
 (0)