summary refs log tree commit diff
path: root/src/libstd/rope.rs
AgeCommit message (Collapse)AuthorLines
2012-10-03Remove uses of + mode from libstdTim Chevalier-2/+2
More or less the same as my analogous commit for libcore. Had to remove the forbid(deprecated_modes) pragma from some files -- will restore it after the snapshot.
2012-10-02Removing explicit uses of + modeTim Chevalier-2/+2
This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes.
2012-10-01Fix rope breakage from de-exporting.Graydon Hoare-4/+4
2012-10-01De-export std::{rope,smallintmap}. Part of #3583.Graydon Hoare-72/+67
2012-09-28Long linesBrian Anderson-1/+1
2012-09-28std: Eliminate deprecated patternsBrian Anderson-9/+8
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-1/+1
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-1/+1
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+7
#[legacy_exports];
2012-09-18core: Rename 'unsafe' mod to 'cast'Brian Anderson-3/+3
2012-09-11Make moves explicit in argumentsTim Chevalier-2/+2
2012-09-10Make remaining moves explicit in libstdTim Chevalier-2/+2
2012-09-07Convert 'again' to 'loop'. Remove 'again' keywordBrian Anderson-1/+1
2012-09-02std: Camel case the rope moduleBrian Anderson-142/+142
2012-09-01Demode reinterpret_castBrian Anderson-1/+1
2012-08-31Make utility funs in core::int, core::uint, etc. not by-referenceTim Chevalier-1/+1
Closes #3302
2012-08-31Remove deprecated modes from rope.rsKevin Cantu-22/+24
2012-08-29core: Demode int/uint modsBrian Anderson-1/+1
2012-08-26Camel case the option typeBrian Anderson-42/+42
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-36/+36
2012-08-05Switch alts to use arrowsBrian Anderson-104/+86
2012-08-01Convert ret to returnBrian Anderson-89/+89
2012-07-14Tear out ty_str and ty_vec.Michael Sullivan-1/+1
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-18/+18
#2907.
2012-07-13Support prefix notation for vstore strings. Closes #2906.Michael Sullivan-5/+5
2012-07-12Accept prefix notation for writing the types of str/~ and friends.Michael Sullivan-8/+8
2012-07-09Switch 'cont' to 'again' everywhere. Close #2229.Graydon Hoare-1/+1
2012-07-05Comments only: change TODOs to FIXMEs and annotate themTim Chevalier-3/+5
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-479/+480
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-01Convert to new closure syntaxBrian Anderson-9/+9
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-1/+1
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-9/+9
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-8/+8
2012-06-21Move vector addition out of trans and into libcore.Eric Holk-1/+1
2012-06-08Convert reinterpret_cast + forget to 'transmute'Brian Anderson-3/+1
2012-05-26core: Make range follow the for loop protocolBrian Anderson-6/+6
2012-05-24std: Remove unused variablesBrian Anderson-2/+0
2012-05-24remove dead assignmentsNiko Matsakis-3/+1
2012-05-18introduce a few copies here and thereNiko Matsakis-1/+1
2012-04-18Fix [] on str to exclude the trailing null.Graydon Hoare-0/+1
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-20/+20
2012-03-26Disallow ret inside of block functionsMarijn Haverbeke-4/+4
Also adds proper checking for cont/break being inside a loop. Closes #1854 Issue #1619
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-12/+12
2012-03-20core: Rename unsafe::leak to unsafe::forget. Closes #2031Brian Anderson-2/+2
2012-03-14annotate libstd and start enforcing mutabilityNiko Matsakis-24/+25
2012-03-13Overhaul constructor naming in libsBrian Anderson-5/+5
2012-03-10Use loop instead of while(true) in libraries and compiler itselfTim Chevalier-21/+15
And remove spurious fails/unreachable() calls.
2012-03-10core: Remove the nearly empty math moduleBrian Anderson-1/+1
This mod only had two functions, all of whose users have been changed to use the uint module.
2012-03-09std: Convert to rustdocBrian Anderson-390/+296
2012-03-08Change util::unreachable to core::unreachableTim Chevalier-6/+6
Closes #1931