rust/src/libunicode
Patrick Walton 416144b827 librustc: Forbid .. in range patterns.
This breaks code that looks like:

    match foo {
        1..3 => { ... }
    }

Instead, write:

    match foo {
        1...3 => { ... }
    }

Closes #17295.

[breaking-change]
2014-09-30 09:11:26 -07:00
..
lib.rs collections, unicode: Add support for NFC and NFKC 2014-07-28 18:47:38 +02:00
normalize.rs core: Add binary_search and binary_search_elem methods to slices. 2014-08-13 11:30:15 -07:00
tables.rs Unify non-snake-case lints and non-uppercase statics lints 2014-08-30 09:10:05 +12:00
u_char.rs librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
u_str.rs Fallout from stabilizing core::option 2014-08-28 09:12:54 -07:00