rust/src/libunicode
Jorge Aparicio 94ddb51c9c DSTify [T]/str extension traits
This PR changes the signature of several methods from `foo(self, ...)` to
`foo(&self, ...)`/`foo(&mut self, ...)`, but there is no breakage of the usage
of these methods due to the autoref nature of `method.call()`s. This PR also
removes the lifetime parameter from some traits (`Trait<'a>` -> `Trait`). These
changes break any use of the extension traits for generic programming, but
those traits are not meant to be used for generic programming in the first
place. In the whole rust distribution there was only one misuse of a extension
trait as a bound, which got corrected (the bound was unnecessary and got
removed) as part of this PR.

[breaking-change]
2014-10-27 20:20:08 -05:00
..
lib.rs Include the Unicode version used to generate src/libunicode/tables.rs. 2014-10-13 14:07:12 +01:00
normalize.rs unicode: Make statics legal 2014-10-09 09:44:51 -07:00
tables.rs Include the Unicode version used to generate src/libunicode/tables.rs. 2014-10-13 14:07:12 +01:00
u_char.rs Link to Unicode SpecialCasing.txt document 2014-10-11 23:58:48 -04:00
u_str.rs DSTify [T]/str extension traits 2014-10-27 20:20:08 -05:00