File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,48 @@ like `FutureExt::map`, `TryFutureExt::and_then`...
11
11
12
12
Rust nightly-2019-02-19 for async_await, await_macro...
13
13
14
+ # State
15
+
16
+ Future
17
+
18
+ - [x] future::and_then
19
+ - [ ] future::err_into
20
+ - [x] future::flatten
21
+ - [ ] future::flatten_stream
22
+ - [x] future::inspect
23
+ - [ ] future::into_stream
24
+ - [x] future::map
25
+ - [x] future::map_err
26
+ - [x] future::map_ok
27
+ - [x] future::or_else
28
+ - [ ] future::poll_fn
29
+ - [x] future::then
30
+ - [ ] future::unwrap_or_else
31
+
32
+ Stream
33
+
34
+ - [ ] stream::chain
35
+ - [ ] stream::chunks
36
+ - [x] stream::collect
37
+ - [ ] stream::concat
38
+ - [ ] stream::filter
39
+ - [ ] stream::filter_map
40
+ - [ ] stream::flatten
41
+ - [ ] stream::fold
42
+ - [ ] stream::for_each
43
+ - [ ] stream::for_each_concurrent
44
+ - [ ] stream::into_future
45
+ - [x] stream::map
46
+ - [x] stream::next
47
+ - [ ] stream::skip
48
+ - [ ] stream::skip_while
49
+ - [ ] stream::take
50
+ - [ ] stream::take_while
51
+ - [ ] stream::then
52
+ - [ ] stream::unfold
53
+ - [ ] stream::zip
54
+
55
+
14
56
# Why
15
57
16
58
To understand how combinators work by looking at clean source code. Compare:
You can’t perform that action at this time.
0 commit comments