summary refs log tree commit diff
path: root/src/libstd/deque.rs
AgeCommit message (Collapse)AuthorLines
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-2/+2
One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes.
2012-10-03Remove uses of + mode from libstdTim Chevalier-7/+7
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-09-28De-export std::deque. Part of #3583.Graydon Hoare-3/+2
2012-09-28std: More demodingBrian Anderson-4/+4
2012-09-28std: Eliminate deprecated patternsBrian Anderson-2/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-2/+2
2012-09-23Register snapshots. Remove redundant Eq impls, Makefile hacksBrian Anderson-56/+0
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-6/+6
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-0/+57
2012-09-13CamelCase and demode json.rs and deque.rsKevin Cantu-75/+90
2012-09-12fixup mutability of vec::each, make iter_bytes pureNiko Matsakis-4/+3
also, change DVec() to work with imm vectors rather than mut ones
2012-09-11Make moves explicit in argumentsTim Chevalier-3/+3
2012-09-10Make remaining moves explicit in libstdTim Chevalier-2/+2
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-5/+5
2012-09-04libstd: "import" -> "use"Patrick Walton-2/+2
2012-09-02std: warn(non_camel_case_types) everywhere. still some exceptionsBrian Anderson-2/+0
2012-08-28CamelCasify lots of stdBen Striegel-51/+53
2012-08-27Camel case various core constructorsBrian Anderson-1/+1
2012-08-26Camel case the option typeBrian Anderson-9/+9
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-11/+11
2012-08-15Convert more core types to camel caseBrian Anderson-3/+3
2012-08-08Convert impls to new syntaxBrian Anderson-2/+2
2012-08-07syntax: Make match arm parsing more restrictive againBrian Anderson-4/+4
Require comma separators for all expression types except the plain block
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-9/+9
2012-08-05Switch alts to use arrowsBrian Anderson-30/+20
2012-08-01Convert ret to returnBrian Anderson-20/+26
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-1/+1
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-11/+11
2012-07-18prevent regions from escaping in ifaces; remove &r.T syntaxNiko Matsakis-1/+3
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-1/+1
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-03Remove some bogus exports.Michael Sullivan-1/+1
2012-07-01Convert to new closure syntaxBrian Anderson-3/+3
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-3/+3
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-3/+3
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-2/+2
2012-06-21Move vector addition out of trans and into libcore.Eric Holk-2/+2
2012-06-20Remove bind. Issue #2189Brian Anderson-1/+1
2012-06-06Rewrite deque to use dvecNiko Matsakis-17/+21
2012-05-03Annotate more FIXMES in libstd (comments only)Tim Chevalier-1/+1
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-14/+14
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-1/+1
2012-03-14annotate libstd and start enforcing mutabilityNiko Matsakis-2/+2
2012-03-13Overhaul constructor naming in libsBrian Anderson-1/+1
2012-03-09std: Convert to rustdocBrian Anderson-24/+2
2012-03-02core: Remove _mut functions from vecBrian Anderson-1/+1
Instead, use vec::to_mut/from_mut to transform vectors in place as needed.
2012-01-31Change option::t to optionTim Chevalier-1/+1
Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming).
2012-01-21issue #1352: change param order on vec::init_elt, putting block in final ↵Graham Fawcett-1/+1
position. To match the init_fn() and init_fn_mut() changes.
2012-01-19lib: ";" to "," in enumsPatrick Walton-2/+2
2012-01-19stdlib: "tag" -> "enum"Patrick Walton-2/+2