about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-08-05 19:58:56 -0400
committerDaniel Micay <danielmicay@gmail.com>2013-08-06 18:09:20 -0400
commitc13f4f398a0c27af573fac8d426a6cda68a168fe (patch)
tree89dc99c8bc1502fc19051a27b9bf78efb2903f99 /src/libstd
parentb3a317c368d424929cdd2e6c3be661d7d8553cc0 (diff)
downloadrust-c13f4f398a0c27af573fac8d426a6cda68a168fe.tar.gz
rust-c13f4f398a0c27af573fac8d426a6cda68a168fe.zip
add Extendable to the prelude
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/prelude.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/prelude.rs b/src/libstd/prelude.rs
index 517bc4a441a..65db55297b3 100644
--- a/src/libstd/prelude.rs
+++ b/src/libstd/prelude.rs
@@ -49,6 +49,7 @@ pub use char::Char;
 pub use container::{Container, Mutable, Map, MutableMap, Set, MutableSet};
 pub use hash::Hash;
 pub use iter::Times;
+pub use iterator::Extendable;
 pub use iterator::{Iterator, IteratorUtil, DoubleEndedIterator, DoubleEndedIteratorUtil};
 pub use iterator::{ClonableIterator, OrdIterator};
 pub use num::{Num, NumCast};
@@ -64,7 +65,7 @@ pub use path::WindowsPath;
 pub use ptr::RawPtr;
 pub use ascii::{Ascii, AsciiCast, OwnedAsciiCast, AsciiStr, ToBytesConsume};
 pub use str::{Str, StrVector, StrSlice, OwnedStr, NullTerminatedStr};
-pub use from_str::{FromStr};
+pub use from_str::FromStr;
 pub use to_bytes::IterBytes;
 pub use to_str::{ToStr, ToStrConsume};
 pub use tuple::{CopyableTuple, ImmutableTuple, ExtendedTupleOps};