Skip to content

Commit

Permalink
RFC 771 is std::iter::{once, empty}
Browse files Browse the repository at this point in the history
  • Loading branch information
aturon committed Apr 15, 2015
1 parent c56c7ae commit 98e41ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ the direction the language is evolving in.
* [0560-integer-overflow.md](text/0560-integer-overflow.md)
* [0639-discriminant-intrinsic.md](text/0639-discriminant-intrinsic.md)
* [0769-sound-generic-drop.md](text/0769-sound-generic-drop.md)
* [0771-std-iter-once.md](text/0771-std-iter-once.md)
* [0803-type-ascription.md](text/0803-type-ascription.md)
* [0809-box-and-in-for-stdlib.md](text/0809-box-and-in-for-stdlib.md)
* [0888-compiler-fences.md](text/0888-compiler-fences.md)
Expand Down
6 changes: 3 additions & 3 deletions text/0000-std-iter-once.md → text/0771-std-iter-once.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- Start Date: 2015-1-30
- RFC PR: (leave this empty)
- Rust Issue: (leave this empty)
- RFC PR: https://github.com/rust-lang/rfcs/pull/771
- Rust Issue: https://github.com/rust-lang/rust/issues/24443

# Summary

Expand Down Expand Up @@ -36,7 +36,7 @@ pub fn empty<T>(x: T) -> Empty<T> {
}
```

These wrapper structs exist to allow future backwards-compatible changes, and hide the implementation.
These wrapper structs exist to allow future backwards-compatible changes, and hide the implementation.

# Drawbacks

Expand Down

0 comments on commit 98e41ae

Please sign in to comment.