From 10ded18b7f9c7d65d5b6ecdec9e30b381c476a11 Mon Sep 17 00:00:00 2001 From: Aaron Turon Date: Fri, 7 Aug 2015 09:33:27 -0700 Subject: [PATCH] RFC 980: read_exact --- README.md | 1 + text/{0000-read-all.md => 0980-read-exact.md} | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename text/{0000-read-all.md => 0980-read-exact.md} (98%) diff --git a/README.md b/README.md index 1e11470a6..96d1a1774 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ the direction the language is evolving in. * [0909-move-thread-local-to-std-thread.md](text/0909-move-thread-local-to-std-thread.md) * [0911-const-fn.md](text/0911-const-fn.md) * [0968-closure-return-type-syntax.md](text/0968-closure-return-type-syntax.md) +* [0980-read-exact.md](text/0980-read-exact.md) * [0982-dst-coercion.md](text/0982-dst-coercion.md) * [0979-align-splitn-with-other-languages.md](text/0979-align-splitn-with-other-languages.md) * [1011-process.exit.md](text/1011-process.exit.md) diff --git a/text/0000-read-all.md b/text/0980-read-exact.md similarity index 98% rename from text/0000-read-all.md rename to text/0980-read-exact.md index d2c841813..f703b9c72 100644 --- a/text/0000-read-all.md +++ b/text/0980-read-exact.md @@ -1,7 +1,7 @@ -- Feature Name: read_exact and ErrorKind::UnexpectedEOF +- Feature Name: read_exact - Start Date: 2015-03-15 -- RFC PR: (leave this empty) -- Rust Issue: (leave this empty) +- RFC PR: https://github.com/rust-lang/rfcs/pull/980 +- Rust Issue: https://github.com/rust-lang/rust/issues/27585 # Summary @@ -282,4 +282,3 @@ the following reasons: compressed file where the uncompressed size was given in a header), `read_full` has to always write to the output buffer, so there's not much to gain over a generic looping implementation calling `read`. -