summary refs log tree commit diff
path: root/src/libstd/default.rs
AgeCommit message (Collapse)AuthorLines
2014-05-07core: Inherit the default moduleAlex Crichton-27/+0
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-2/+4
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-02Replace most ~exprs with 'box'. #11779Brian Anderson-1/+1
2014-01-03libstd: Remove all support code related to `@mut`Patrick Walton-4/+0
2013-12-27std: uniform modules titles for docLuca Bruno-1/+1
This commit uniforms the short title of modules provided by libstd, in order to make their roles more explicit when glancing at the index. Signed-off-by: Luca Bruno <lucab@debian.org>
2013-09-12std: Add a bunch of Default implsErick Tryzelaar-0/+12
2013-08-26Add a Default trait.Corey Richardson-0/+17