about summary refs log tree commit diff
path: root/src/libstd/arc.rs
AgeCommit message (Expand)AuthorLines
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+4
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-4/+0
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+4
2012-12-28libstd: Fix tests. rs=bustagePatrick Walton-0/+2
2012-12-27libstd: Fix a bunch of resolve errors in tests. rs=firePatrick Walton-1/+7
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-6/+11
2012-12-13Rename Send trait to OwnedBrian Anderson-25/+25
2012-12-11Reverse the order of the results of pipes::streamTim Chevalier-6/+6
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-29librustc: Make the Drop trait use explicit selfPatrick Walton-1/+1
2012-11-27core: Add Clone traitBrian Anderson-4/+16
2012-11-14Convert libstd to use the Drop traitBen Striegel-1/+4
2012-11-14Revert "Convert libstd to use the Drop trait"Brian Anderson-4/+1
2012-11-14Convert libstd to use the Drop traitBen Striegel-1/+4
2012-10-23core: Use PortOne instead of Future in future_resultBrian Anderson-1/+1
2012-10-23Remove uses of binary move - <- - from tests and librariesTim Chevalier-6/+6
2012-10-12Make moves explicit in std testsTim Chevalier-22/+23
2012-10-11Remove comment that is now falseTim Chevalier-2/+2
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-1/+1
2012-10-03Remove uses of + mode from libstdTim Chevalier-11/+11
2012-09-28De-export std::{arc,comm,sync}. Part of #3583.Graydon Hoare-17/+12
2012-09-28Long linesBrian Anderson-2/+2
2012-09-28std: Eliminate deprecated patternsBrian Anderson-1/+0
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-2/+2
2012-09-23Make it illegal to use modes in a fn signature with providingNiko Matsakis-1/+1
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under #[l...Graydon Hoare-0/+1
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-3/+6
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially dem...Niko Matsakis-8/+5
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-5/+8
2012-09-18core: Rename 'unsafe' mod to 'cast'Brian Anderson-2/+2
2012-09-18core: Move Exclusive and SharedMutableState to the private modBrian Anderson-1/+1
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-1/+1
2012-09-10Make remaining moves explicit in libstdTim Chevalier-19/+19
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-22/+22
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-8/+8
2012-09-04std: Remove struct ctorsBrian Anderson-1/+6
2012-09-04libstd: "import" -> "use"Patrick Walton-3/+2
2012-08-29std: Camel case some constructorsBrian Anderson-21/+21
2012-08-27Fix region-related unsafety in arc::get's signatureBen Blum-1/+1
2012-08-26convert std::arc types to camelcaseBen Blum-77/+78
2012-08-26convert std::sync types to camelcaseBen Blum-7/+8
2012-08-26Camel case the option typeBrian Anderson-1/+1
2012-08-25Use region variance to remove a bunch of unsafety in sync/arc (#2282)Ben Blum-45/+12
2012-08-22export unwrap_arc functions in core/stdBen Blum-1/+2
2012-08-21more sound treatment of fn& regions; change all & to be distinctNiko Matsakis-1/+1
2012-08-20Document arc::unwrap. Close #3123.Ben Blum-0/+22
2012-08-20oops, remove #[cfg(stage1)]s from arc::unwrap functions+testsBen Blum-4/+0
2012-08-20Add unwrap for std::arc ARC variantsBen Blum-2/+48
2012-08-16Update the rock-paper-scissors example in the tutorial, and rename some types...Eric Holk-1/+1
2012-08-16Add std::comm with DuplexStreamEric Holk-4/+3