Skip to content

Commit d573a1f

Browse files
committed
Add the state of the project to README
1 parent 44ba8e9 commit d573a1f

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,48 @@ like `FutureExt::map`, `TryFutureExt::and_then`...
1111

1212
Rust nightly-2019-02-19 for async_await, await_macro...
1313

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+
1456
# Why
1557

1658
To understand how combinators work by looking at clean source code. Compare:

0 commit comments

Comments
 (0)