about summary refs log tree commit diff
path: root/src/libstd/prelude
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-12-30 13:58:31 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2015-01-05 12:30:51 +1100
commit0302d379776fca82d3eb693046239dc66998f691 (patch)
treeee410f469e5a025f09d1eca774ca3aa71f9d519e /src/libstd/prelude
parent19120209d8e532514203d16a2cff0ad3b44de3bb (diff)
downloadrust-0302d379776fca82d3eb693046239dc66998f691.tar.gz
rust-0302d379776fca82d3eb693046239dc66998f691.zip
Merge `UnicodeChar` and `CharExt`.
This "reexports" all the functionality of `core::char::CharExt` as
methods on `unicode::u_char::UnicodeChar` (renamed to `CharExt`).

Imports may need to be updated (one now just imports
`unicode::CharExt`, or `std::char::CharExt` rather than two traits from
either), so this is a

[breaking-change]
Diffstat (limited to 'src/libstd/prelude')
-rw-r--r--src/libstd/prelude/v1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/prelude/v1.rs b/src/libstd/prelude/v1.rs
index eda20fc7d60..f6bdcd53dff 100644
--- a/src/libstd/prelude/v1.rs
+++ b/src/libstd/prelude/v1.rs
@@ -22,7 +22,7 @@
 // Reexported types and traits
 
 #[stable] #[doc(no_inline)] pub use boxed::Box;
-#[stable] #[doc(no_inline)] pub use char::{CharExt, UnicodeChar};
+#[stable] #[doc(no_inline)] pub use char::CharExt;
 #[stable] #[doc(no_inline)] pub use clone::Clone;
 #[stable] #[doc(no_inline)] pub use cmp::{PartialEq, PartialOrd, Eq, Ord};
 #[stable] #[doc(no_inline)] pub use iter::CloneIteratorExt;