about summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-01-24Stop using oldcomm in uv_global_loop testsBrian Anderson-17/+18
2013-01-24std: Mop up Mac/Linux breakageTim Chevalier-2/+2
2013-01-24remove remaining is_not_empty functions/methodsDaniel Micay-9/+0
2013-01-24std: Fix broken Windows functionTim Chevalier-1/+1
2013-01-24replace ConstVector trait with the Container traitDaniel Micay-6/+6
2013-01-24Merge pull request #4613 from erickt/incomingTim Chevalier-418/+555
2013-01-24syntax/rustc: Less copyTim Chevalier-2/+2
2013-01-24time tests are racing on tzset, so merge the tests together.Erick Tryzelaar-12/+16
2013-01-24convert most of libstd over to structsErick Tryzelaar-406/+539
2013-01-24librustc: Allow `&mut` to be loaned; allow `self` to be loaned; make `&mut` l...Patrick Walton-74/+136
2013-01-24librustc: Disallow `&mut` loans from overlapping with any other loansPatrick Walton-3/+9
2013-01-24librustc: Make C functions unsafePatrick Walton-3/+7
2013-01-24Merge pull request #4616 from thestinger/priority_queueTim Chevalier-6/+3
2013-01-24remove is_not_empty method from PriorityQueueDaniel Micay-6/+3
2013-01-24remove old LinearMap constructorDaniel Micay-2/+2
2013-01-23Merge pull request #4594 from thestinger/mapTim Chevalier-169/+46
2013-01-23fix testsDaniel Micay-1/+1
2013-01-23core: Remove private::chan_from_global_ptr. #3915Brian Anderson-2/+2
2013-01-23std: Convert uv_global_loop to use pipesBrian Anderson-128/+154
2013-01-23switch LinearMap to current constructor conventionDaniel Micay-17/+17
2013-01-23libsyntax: Remove `fn() unsafe { ... }`. r=graydonPatrick Walton-1596/+1817
2013-01-23improve hashmap/treemap documentationDaniel Micay-3/+2
2013-01-23add find method to the core::container::Map traitDaniel Micay-20/+20
2013-01-23rename hashmap find_ref/get_ref -> find/getDaniel Micay-3/+3
2013-01-23rename hashmap find/get -> find_copy/get_copyDaniel Micay-9/+3
2013-01-23get rid of the std::map::Map LinearMap implDaniel Micay-116/+0
2013-01-23rename send_map to hashmapDaniel Micay-7/+7
2013-01-23Merge pull request #4596 from Trinick/tomutrenameTim Chevalier-21/+22
2013-01-23core: Rename to_mut and from_mut to cast_to_mut and cast_from_mutTrinick-21/+22
2013-01-22Merge pull request #4586 from thestinger/treemapTim Chevalier-7/+1
2013-01-22std: un-ignore strptime test; fix bug introduced by 1a226f instead.Graydon Hoare-2/+1
2013-01-22drop is_not_empty from TreeSet/TreeMapDaniel Micay-7/+1
2013-01-22std: Ignore time::tests::test_strptime, it's failing for some reasonTim Chevalier-0/+1
2013-01-22std: various hacking on workcache.Graydon Hoare-107/+185
2013-01-22Merge pull request #4466 from ScriptDevil/masterTim Chevalier-33/+34
2013-01-22Merge pull request #4571 from thestinger/containerTim Chevalier-47/+97
2013-01-22add a base Container traitDaniel Micay-20/+26
2013-01-22add a container::Map traitDaniel Micay-32/+34
2013-01-22add a Mutable container trait with clearDaniel Micay-4/+48
2013-01-21Add Timespec comment and assert about negative nsecChris Peterson-0/+11
2013-01-21style fixDaniel Micay-3/+1
2013-01-20Merge pull request #4506 from thestinger/mkdtempTim Chevalier-16/+8
2013-01-20Merge pull request #4519 from cpeterso/impl-timespec-ordTim Chevalier-2/+46
2013-01-20add a Set trait and implement it for TreeSetDaniel Micay-13/+16
2013-01-19Fix the difference method on bit vectorsAlex Crichton-5/+32
2013-01-17Add a license check to tidy. #4018Brian Anderson-0/+29
2013-01-17re-borrow in heir_swap (fixes compile)Daniel Micay-1/+1
2013-01-17indentation fixDaniel Micay-2/+2
2013-01-17make is_superset/is_subset O(n+m) instead of O(n*log(m))Daniel Micay-3/+25
2013-01-17make intersection O(n+m) instead of O(n*log(m))Daniel Micay-4/+18