summary refs log tree commit diff
path: root/src/libcore/dlist.rs
AgeCommit message (Expand)AuthorLines
2012-10-04Forbid deprecated modes again in coreTim Chevalier-1/+1
2012-10-02Removing explicit uses of + modeTim Chevalier-16/+16
2012-09-28Demode iter::foldl and friendsTim Chevalier-1/+1
2012-09-28demode vecNiko Matsakis-1/+1
2012-09-26core: Replace map/map_default with map_ref/map_default_refBrian Anderson-2/+2
2012-09-26libcore: De-export box, cast, and dlistPatrick Walton-6/+3
2012-09-25Demode dvecTim Chevalier-1/+1
2012-09-23core: Demode optionBrian Anderson-18/+26
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-4/+3
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under #[l...Graydon Hoare-0/+1
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-1/+1
2012-09-19core: Clean up crate docs and give all mods a brief descriptionBrian Anderson-6/+10
2012-09-18Revert "rustc: Change all non-keyword uses of "link""Patrick Walton-24/+24
2012-09-18Replace uses of 'unchecked' with 'unsafe'Brian Anderson-2/+2
2012-09-18rustc: Change all non-keyword uses of "link"Patrick Walton-24/+24
2012-09-11Make moves explicit in argumentsTim Chevalier-8/+8
2012-09-10Make more moves explicit in libcoreTim Chevalier-4/+4
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-2/+2
2012-08-27libcore: Replace a bunch of "== None" with ".is_none()".Patrick Walton-1/+1
2012-08-27Camel case various core constructorsBrian Anderson-39/+41
2012-08-26Camel case the option typeBrian Anderson-50/+50
2012-08-15Convert more core types to camel caseBrian Anderson-52/+52
2012-08-13De-mode-ify a few minor libcore modules.Graydon Hoare-0/+4
2012-08-08Convert impls to new syntaxBrian Anderson-7/+5
2012-08-07syntax: Make match arm parsing more restrictive againBrian Anderson-4/+4
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-10/+10
2012-08-05Switch alts to use arrowsBrian Anderson-36/+24
2012-07-26Undo dlist's destructor-involving type structure in light of #3039Ben Blum-26/+9
2012-07-26Add issue number #3039 to dlist destructorBen Blum-1/+1
2012-07-26dlist pop needs copy after all (#3024)Ben Blum-15/+12
2012-07-26dlist: cleanup a little; pretend to implement "cycle-collecting" destructorBen Blum-24/+50
2012-07-17dlist enhancements: concat/append/prepend/reverse/each_node (close #2917)Ben Blum-66/+292
2012-07-14Merge branch 'vector-reform' into incomingMichael Sullivan-11/+15
2012-07-14Move the world over to using the new style string literals and types. Closes ...Michael Sullivan-11/+15
2012-07-14dlist: handle iter early break properlyBen Blum-0/+10
2012-07-05make disallow_kill an int for nested unkillables (closes #2782)Ben Blum-1/+1
2012-07-04convert doc-attributes to doc-comments using ./src/etc/sugarise-doc-comments....Gareth Daniel Smith-48/+64
2012-07-02dlist should_fail tests ignore(cfg(windows))Ben Blum-7/+7
2012-07-02add dlist.rs should_fail testsBen Blum-0/+50
2012-07-02Add doubly-linked list to libcore (to be used in task.rs).Ben Blum-0/+593