summary refs log tree commit diff
path: root/src/libstd/ascii.rs
AgeCommit message (Expand)AuthorLines
2017-04-09Reduce str transmutes, add mut versions of methods.Clar Charr-3/+2
2017-04-01Add more std::ascii module-level docs.Eugene Bulkin-0/+14
2017-04-01Clean up std::ascii sub-level docs.Eugene Bulkin-8/+44
2017-03-27Fixed spelling mistakesAlan Stoate-2/+2
2017-03-26change string references in asciiext r? @steveklabnikaStoate-9/+15
2017-02-13Add feature annotations to the doctests for ascii_ctype.Zack Weinberg-0/+20
2017-02-13Squeeze URL lines under 100 chars wide to make tidy happy.Zack Weinberg-7/+7
2017-02-08Add equivalents of C's <ctype.h> functions to AsciiExt.Zack Weinberg-0/+838
2017-01-29Fix a few impl stability attributesOliver Middleton-1/+1
2017-01-22Add more references between lowercase/uppercase operations.Corey Farwell-2/+30
2016-12-18Implement `fmt::Debug` for all structures in libstd.Corey Farwell-0/+8
2016-08-24Use `#[prelude_import]` in `libstd`.Jeffrey Seyfried-3/+0
2016-08-18Add a FusedIterator trait.Steven Allen-0/+4
2016-04-11std: Stabilize APIs for the 1.9 releaseAlex Crichton-6/+2
2016-03-26Rollup merge of #32387 - alexcrichton:ascii-test, r=aturonManish Goregaokar-0/+6
2016-03-20std: Add regression test for #32074Alex Crichton-0/+6
2016-03-17std: Revert addition of `into_ascii_*` methodsAlex Crichton-102/+0
2016-03-07Auto merge of #32051 - steveklabnik:gh9447, r=blussbors-1/+1
2016-03-04End stdlib module summaries with a full stop.Steve Klabnik-1/+1
2016-03-03std: Stabilize `into_*` ASCII methodsAlex Crichton-8/+4
2016-03-01Auto merge of #31335 - SimonSapin:ascii-into, r=alexcrichtonbors-0/+106
2016-02-14Rollup merge of #31584 - tshepang:shorten, r=steveklabnikManish Goregaokar-5/+5
2016-02-11doc: assert_eq on 2 boolean values is redundantTshepang Lekhonkhobe-5/+5
2016-02-11doc: add missing wordsTshepang Lekhonkhobe-1/+1
2016-02-04Clarify scenario where AsciiExt appears to operate on non-ASCIICorey Farwell-0/+21
2016-02-01Add AsciiExt::into_ascii_{upper,lower}caseSimon Sapin-0/+106
2015-08-15std: Add issues to all unstable featuresAlex Crichton-2/+2
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-85/+14
2015-08-09Make `str::as_bytes_mut` privateTobias Bucher-2/+3
2015-08-09Replace many uses of `mem::transmute` with more specific functionsTobias Bucher-3/+2
2015-07-29Rollup merge of #27326 - steveklabnik:doc_show_use, r=GankroSteve Klabnik-2/+4
2015-07-27std: Deprecate a number of unstable featuresAlex Crichton-0/+9
2015-07-27Show appropriate feature flags in docsSteve Klabnik-2/+4
2015-07-13Implement IndexMut for String and str.Simon Sapin-0/+4
2015-07-13Add more tests for AsciiExt::is_asciiSimon Sapin-8/+11
2015-07-13Add tests for AsciiExt::make_ascii_*case, including on String.Simon Sapin-0/+45
2015-06-17std: Split the `std_misc` featureAlex Crichton-5/+1
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-1/+1
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-2/+0
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-6/+6
2015-03-27Test fixes and rebase conflicts, round 3Alex Crichton-0/+2
2015-03-24Add examples for std::asciiSteve Klabnik-4/+96
2015-03-13Deprecate range, range_step, count, distributionsAaron Turon-2/+2
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-6/+6
2015-02-23Add documentation to associated types in libcore, libstdIvan Petkov-0/+1
2015-02-17std: Stabilize the `ascii` moduleAlex Crichton-70/+122
2015-02-15Audit integer types in libunicode, libcore/(char, str) and libstd/asciiVadim Petrochenkov-2/+2
2015-02-05Use `for` instead of `while` in ascii.rs testsKevin Yap-19/+7
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-1/+1
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-2/+2