Patrick Walton
090040bf40
librustc: Remove ~EXPR
, ~TYPE
, and ~PAT
from the language, except
...
for `~str`/`~[]`.
Note that `~self` still remains, since I forgot to add support for
`Box<self>` before the snapshot.
How to update your code:
* Instead of `~EXPR`, you should write `box EXPR`.
* Instead of `~TYPE`, you should write `Box<Type>`.
* Instead of `~PATTERN`, you should write `box PATTERN`.
[breaking-change]
2014-05-06 23:12:54 -07:00
Brian Anderson
a5be12ce7e
Replace most ~exprs with 'box'. #11779
2014-05-02 23:00:58 -07:00
Daniel Micay
7852625b86
remove leftover obsolete string literals
2014-05-01 17:42:57 -04:00
Joseph Crail
809f13ea94
Fix misspellings in comments.
2014-04-21 00:49:39 -04:00
Steven Fackler
06edc6a3b6
More default impl and docs removal in treemap
2014-04-15 19:45:00 -07:00
Steven Fackler
c7325bdd8e
Add a default impl for Set::is_superset
...
I also deleted a bunch of documentation that was copy/pasted from the
trait definition.
2014-04-15 19:45:00 -07:00
Liigo Zhuang
408f484b66
libtest: rename BenchHarness
to Bencher
...
Closes #12640
2014-04-11 17:31:13 +08:00
Huon Wilson
4b9a7a2588
collections: replace all ~[T] with Vec<T>.
2014-04-09 09:58:17 +10:00
Alex Crichton
8ad7e5481f
collections: Switch field privacy as necessary
2014-03-31 15:17:12 -07:00
Brian Anderson
ee052198c5
Rename from_iterator
to from_iter
for consistency.
2014-03-30 21:45:55 -07:00
Marvin Löbel
6200e761f0
Changed iter::Extendable
and iter::FromIterator
to take a Iterator
by value
2014-03-25 21:49:55 +01:00
Huon Wilson
198caa87cd
Update users for the std::rand -> librand move.
2014-03-12 11:31:43 +11:00
Alex Crichton
6485917d7c
Move extra::json to libserialize
...
This also inverts the dependency between libserialize and libcollections.
cc #8784
2014-02-24 09:51:39 -08:00
Liigo Zhuang
53b9d1a324
move extra::test to libtest
2014-02-20 16:03:58 +08:00
Edward Wang
e9ff91e9be
Move replace and swap to std::mem. Get rid of std::util
...
Also move Void to std::any, move drop to std::mem and reexport in
prelude.
2014-02-11 05:21:35 +08:00
HeroesGrave
d81bb441da
moved collections from libextra into libcollections
2014-02-07 19:49:26 +13:00