about summary refs log tree commit diff
path: root/src/libcore/vec.rs
AgeCommit message (Expand)AuthorLines
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-5/+5
2013-05-14auto merge of #6441 : alexcrichton/rust/issue-5531, r=luqmanabors-10/+12
2013-05-13auto merge of #6388 : recrack/rust/each2_mut, r=pcwaltonbors-2/+31
2013-05-13Remove re-exports from libcore/core.rcAlex Crichton-10/+12
2013-05-13core: Move locks, atomic rc to unstable::syncBrian Anderson-2/+3
2013-05-13Add vec.rs each2_mut functionYoungmin Yoo-2/+31
2013-05-12libcore: Change `each_val` to follow new for-loop protocolgifnksm-6/+19
2013-05-11auto merge of #6389 : sonwow/rust/issue-3356, r=bstriebors-5/+5
2013-05-10Stop using the '<->' operatorAlex Crichton-39/+42
2013-05-10test: Use the new `for` protocolAlex Crichton-2/+26
2013-05-10renamed vec::from_slice to vec::to_ownedYoungsoo Son-5/+5
2013-05-10core: Use the new `for` protocolAlex Crichton-23/+190
2013-05-09auto merge of #6354 : Aatch/rust/uninit-intrinsic, r=graydonbors-5/+90
2013-05-09Make staged versions of the functions that use uninitJames Miller-0/+90
2013-05-09auto merge of #6345 : seanmoon/rust/fix-typos, r=sanxiynbors-1/+1
2013-05-09Replace init() with uninit() where appropriateJames Miller-9/+4
2013-05-08auto merge of #6327 : z0w0/rust/rm-notest, r=brsonbors-15/+15
2013-05-08librustc: Stop parsing modes and remove them entirely from the languagePatrick Walton-6/+6
2013-05-09Fix typosSean Moon-1/+1
2013-05-08Remove #[cfg(notest)] and use #[cfg(not(test))] to cooincide with #[cfg(debug)]Zack Corr-15/+15
2013-05-07auto merge of #6294 : sonwow/rust/renamed-test, r=thestingerbors-2/+2
2013-05-07auto merge of #6254 : alexcrichton/rust/issues-5311-4490-better-foldl, r=graydonbors-8/+9
2013-05-07renamed testsYoungsoo Son-2/+2
2013-05-06Improve lifetimes on foldl/foldr and lift the Copy requirementAlex Crichton-8/+9
2013-05-05Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freezeNiko Matsakis-4/+4
2013-05-04Register snapshotsBrian Anderson-226/+0
2013-04-30allover: numerous unused muts etcNiko Matsakis-6/+3
2013-04-30new borrow checker (mass squash)Niko Matsakis-10/+1
2013-04-30adapt to snapshotNiko Matsakis-217/+0
2013-04-30I modified the doc of from_elem, from_fn, I think it returns an owned vectorSangeun Kim-4/+4
2013-04-29librustc: Remove `ptr::addr_of`.Patrick Walton-37/+29
2013-04-28make way for a new iter moduleDaniel Micay-75/+75
2013-04-26auto merge of #6057 : cmr/rust/map_zip, r=graydonbors-6/+9
2013-04-25Rename vec::mod2 to vec::mod_zipCorey Richardson-6/+9
2013-04-24Move documentation for vec::windowed where it will be generatedCorey Richardson-8/+10
2013-04-24Add basic documentation for with_capacityCorey Richardson-0/+1
2013-04-20core: remove unused 'mut' variablesAlex Crichton-2/+2
2013-04-20Replaced many instances of reinterpret_cast with transmuteMatthijs Hofstra-14/+14
2013-04-19auto merge of #5945 : graydon/rust/fix-unicode-tables, r=pcwaltonbors-0/+85
2013-04-19auto merge of #5968 : gifnksm/rust/windowed, r=brsonbors-0/+3
2013-04-20libcore: Fix assertion failure in vec::windowe.gifnksm-0/+3
2013-04-19librustc: Fix botched merge. rs=mergePatrick Walton-0/+9
2013-04-19librustc: WIP patch for using the return value.Patrick Walton-6/+21
2013-04-19test: Add fannkuch-redux and fasta-redux shootout benchmarksPatrick Walton-1/+23
2013-04-19test: Rewrite nbody and spectralnorm shootout benchmarksPatrick Walton-6/+35
2013-04-19librustc: Implement fast-ffi and use it in various placesPatrick Walton-0/+2
2013-04-19move iterator adaptor tests to iterator moduleDaniel Micay-66/+0
2013-04-19iterator: add skip and takeDaniel Micay-0/+28
2013-04-18core: replace unicode match exprs with bsearch in const arrays, minor perf win.Graydon Hoare-43/+43
2013-04-18core: add vec::bsearch.Graydon Hoare-0/+85