about summary refs log tree commit diff
path: root/src/libcore/char.rs
AgeCommit message (Expand)AuthorLines
2014-09-30librustc: Forbid `..` in range patterns.Patrick Walton-5/+5
2014-09-03Fix spelling errors and capitalization.Joseph Crail-2/+2
2014-08-30Unify non-snake-case lints and non-uppercase statics lintsP1start-1/+1
2014-08-16Optimized IR generation for UTF-8 and UTF-16 encodingMarvin Löbel-31/+36
2014-08-08Register new snapshot 12e0f72Niko Matsakis-3/+0
2014-08-06Char::from_digit signature fixfort-1/+1
2014-07-24librustc: Stop desugaring `for` expressions and translate them directly.Patrick Walton-1/+4
2014-07-07Add libunicode; move unicode functions from corekwantam-238/+3
2014-06-29Extract tests from libcore to a separate crateSteven Fackler-202/+0
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-0/+1
2014-05-31rustdoc: Create anchor pages for primitive typesAlex Crichton-0/+1
2014-05-30lib{std,core,debug,rustuv,collections,native,regex}: Fix snake_case errors.Kevin Butler-1/+2
2014-05-29std: Recreate a `rand` moduleAlex Crichton-1/+1
2014-05-28Move trait impls for primitives near trait definitionPiotr Jawniak-30/+0
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-5/+5
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-25/+44
2014-05-15core: Update all tests for fmt movementAlex Crichton-2/+2
2014-05-13std: Rename str::Normalizations to str::DecompositionsFlorian Zeitz-2/+2
2014-05-13core: Move Hangul decomposition into unicode.rsFlorian Zeitz-48/+6
2014-05-13core: Use appropriately sized integers for codepoints and bytesFlorian Zeitz-50/+45
2014-05-11core: Remove the cast moduleAlex Crichton-1/+1
2014-05-07core: Get coretest workingAlex Crichton-5/+9
2014-05-07core: Add a limited implementation of failureAlex Crichton-2/+2
2014-05-07core: Bring char/finally test style up to dateAlex Crichton-154/+157
2014-05-07core: Inherit the char moduleAlex Crichton-0/+854
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-406/+0
2013-05-19Register snapshotsBrian Anderson-35/+0
2013-05-19Use `///` style doc-comments and add missing headingsBrendan Zabarauskas-72/+83
2013-05-19Code modernisation and cleanupBrendan Zabarauskas-64/+100
2013-05-19Create Char traitBrendan Zabarauskas-56/+101
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-3/+3
2013-05-08Remove #[cfg(notest)] and use #[cfg(not(test))] to cooincide with #[cfg(debug)]Zack Corr-4/+4
2013-05-03Remove pub from core::{unicode,cmath,stackwalk,rt}Alex Crichton-17/+16
2013-04-30char: fix unused import warningDaniel Micay-0/+1
2013-04-25implement Ord, TotalEq and TotalOrd for charDaniel Micay-14/+15
2013-04-24Removed ascii functions from other modulesMarvin Löbel-14/+2
2013-04-20Cleaned up case related functions a bitMarvin Löbel-2/+16
2013-04-08Removing no longer needed unsafe blocksAlex Crichton-6/+4
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-28/+28
2013-03-22libcore: Remove `pure` from libcore. rs=depurePatrick Walton-14/+14
2013-03-20change some uses of fail_unless to assert_eqJohn Clements-29/+29
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-57/+57
2013-03-04Adding missing imports for tests, and gate off othersAlex Crichton-3/+4
2013-03-04Remove unused imports throughout src/Alex Crichton-1/+0
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-1/+1
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-2/+2
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-4/+0
2013-02-03Fixed errors resulting from rebase.Marvin Löbel-2/+2
2013-02-03Converted libcore/uint-template.rs to the new string functions.Marvin Löbel-1/+1
2013-02-03Added char::from_digit(), char::is_digit_radix() and an argument check to cha...Marvin Löbel-0/+50