about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorPiotr Jawniak <sawyer47@gmail.com>2014-10-07 08:51:12 +0200
committerPiotr Jawniak <sawyer47@gmail.com>2014-10-07 08:51:12 +0200
commite8c03c3f42b3e2349c88765cea663f354fa99ed5 (patch)
treefbe17ac7fe7806720cebfc9d8714398218e94d94 /src/libcollections
parent8d702167ba6af50c64683685bae4956cb094a23a (diff)
downloadrust-e8c03c3f42b3e2349c88765cea663f354fa99ed5.tar.gz
rust-e8c03c3f42b3e2349c88765cea663f354fa99ed5.zip
Re-exports core::str::Utf16CodeUnits in std::str
Closes #17751
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs
index 553b34a55c3..98c361d5817 100644
--- a/src/libcollections/str.rs
+++ b/src/libcollections/str.rs
@@ -75,7 +75,7 @@ use vec::Vec;
 pub use core::str::{from_utf8, CharEq, Chars, CharOffsets};
 pub use core::str::{Bytes, CharSplits};
 pub use core::str::{CharSplitsN, AnyLines, MatchIndices, StrSplits};
-pub use core::str::{eq_slice, is_utf8, is_utf16, Utf16Items};
+pub use core::str::{Utf16CodeUnits, eq_slice, is_utf8, is_utf16, Utf16Items};
 pub use core::str::{Utf16Item, ScalarValue, LoneSurrogate, utf16_items};
 pub use core::str::{truncate_utf16_at_nul, utf8_char_width, CharRange};
 pub use core::str::{Str, StrSlice};