summary refs log tree commit diff
path: root/src/libstd/io/cursor.rs
AgeCommit message (Expand)AuthorLines
2016-05-27Inline simple Cursor write callsJamey Sharp-0/+2
2016-03-22try! -> ?Jorge Aparicio-3/+3
2016-02-26Use .copy_from_slice() where applicableUlrik Sverdrup-1/+1
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-4/+7
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-3/+2
2015-10-21Fix doc sample for CursorWesley Wiser-1/+1
2015-10-09Implement Read, BufRead, Write and Seek for Cursor<Box<[u8]>>Steven Fackler-0/+57
2015-10-02Use generic trait implementations for Cursor when possible.nwin-49/+25
2015-08-11Register new snapshotsAlex Crichton-3/+0
2015-08-03syntax: Implement #![no_core]Alex Crichton-1/+2
2015-07-28IO Docs: Fix Link in Cursor descriptionPascal Hertleif-4/+2
2015-07-22Improve documentation for std::io::CursorSteve Klabnik-9/+140
2015-07-09io: Use Vec::resize in Cursor<Vec<u8>> for more efficient zero fillUlrik Sverdrup-2/+3
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-4/+4
2015-03-31Test fixes and rebase conflicts, round 3Alex Crichton-61/+61
2015-03-31rollup merge of #23919: alexcrichton/stabilize-io-errorAlex Crichton-2/+1
2015-03-31std: Stabilize last bits of io::ErrorAlex Crichton-2/+1
2015-03-31std: Clean out #[deprecated] APIsAlex Crichton-4/+4
2015-03-31Auto merge of #23549 - aturon:stab-num, r=alexcrichtonbors-1/+0
2015-03-31Stabilize std::numAaron Turon-1/+0
2015-03-30std: Standardize (input, output) param orderingsAlex Crichton-1/+1
2015-03-23rollup merge of #23608: nagisa/refine-cursor-docstringAlex Crichton-8/+5
2015-03-23rollup merge of #23607: mahkoh/cursorAlex Crichton-0/+1
2015-03-23derive missing trait implementations for cursorJulian Orth-0/+1
2015-03-22Refine Cursor docstringSimonas Kazlauskas-8/+5
2015-03-20don't use Result::ok just to be able to use unwrap/unwrap_orOliver Schneider-1/+1
2015-03-18Remove the newly introduced trait impls for fixed-size arrays and use &b"..."...Vadim Petrochenkov-9/+5
2015-03-18Avoid metadata bloat by using trait FixedSizeArrayVadim Petrochenkov-20/+7
2015-03-18Fixed-size byte string literals (RFC 339)Vadim Petrochenkov-0/+17
2015-03-06Rollup merge of #23010 - alexcrichton:deprecate-some-old-io, r=aturonManish Goregaokar-2/+18
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-7/+7
2015-03-04std: Stabilize portions of the `io` moduleAlex Crichton-2/+18
2015-02-26remove some compiler warningsTshepang Lekhonkhobe-6/+6
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-7/+7
2015-02-03std: Add `io` module againAlex Crichton-0/+408