about summary refs log tree commit diff
path: root/src/libcore/prelude.rs
diff options
context:
space:
mode:
authorMarvin Löbel <loebel.marvin@gmail.com>2013-03-21 22:59:33 +0100
committerMarvin Löbel <loebel.marvin@gmail.com>2013-03-21 23:06:04 +0100
commitee2f3d9673407db3ca5a0eb24e01ef52c7fc676c (patch)
treef85fe06cfa6bfab47ddfe9c55e9c91c2a67495d6 /src/libcore/prelude.rs
parented25a674ac6bc53c9ee9f8c1cce21541f6811d4b (diff)
downloadrust-ee2f3d9673407db3ca5a0eb24e01ef52c7fc676c.tar.gz
rust-ee2f3d9673407db3ca5a0eb24e01ef52c7fc676c.zip
Switched over substr and trim functions in str to be non-allocating, temporary renamed them to better track use-sites
Diffstat (limited to 'src/libcore/prelude.rs')
-rw-r--r--src/libcore/prelude.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/prelude.rs b/src/libcore/prelude.rs
index 430195741ab..d0307c8bf70 100644
--- a/src/libcore/prelude.rs
+++ b/src/libcore/prelude.rs
@@ -36,7 +36,7 @@ pub use path::Path;
 pub use path::PosixPath;
 pub use path::WindowsPath;
 pub use ptr::Ptr;
-pub use str::{StrSlice, Trimmable, OwnedStr};
+pub use str::{StrSlice, OwnedStr};
 pub use to_bytes::IterBytes;
 pub use to_str::ToStr;
 pub use tuple::{CopyableTuple, ImmutableTuple, ExtendedTupleOps};