about summary refs log tree commit diff
path: root/src/libcore/clone.rs
AgeCommit message (Expand)AuthorLines
2014-09-22remove references to owned and managed pointers in clone docsSteve Klabnik-3/+1
2014-06-29Extract tests from libcore to a separate crateSteven Fackler-60/+0
2014-06-24core: Add stability attributes to CloneBrian Anderson-0/+4
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-2/+2
2014-06-11rustc: Remove ~[T] from the languageAlex Crichton-1/+1
2014-06-11rustc: Move the AST from @T to Gc<T>Alex Crichton-3/+4
2014-06-11rustc: Update how Gc<T> is recognizedAlex Crichton-6/+0
2014-05-15core: Update all tests for fmt movementAlex Crichton-1/+1
2014-05-13std: Move the owned module from core to stdAlex Crichton-17/+13
2014-05-07Test fixes and rebase conflictsAlex Crichton-2/+3
2014-05-07core: Get coretest workingAlex Crichton-0/+2
2014-05-07core: Bring clone tests up to date in styleAlex Crichton-36/+39
2014-05-07core: Inherit the clone moduleAlex Crichton-0/+171
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-184/+0
2013-05-20core: Update clone docsBrian Anderson-4/+6
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-4/+4
2013-05-16auto merge of #6509 : thestinger/rust/clone, r=nikomatsakisbors-0/+14
2013-05-15add DeepClone impl for @T and @mut T with T: ConstDaniel Micay-11/+36
2013-05-15add a Clone impl for borrowed pointersDaniel Micay-0/+14
2013-05-15add a DeepClone traitDaniel Micay-7/+45
2013-05-15clone: clarify docstringDaniel Micay-2/+3
2013-04-08clone: managed boxes need to clone by shallow copyDaniel Micay-11/+19
2013-04-05Move tests inside clone.rs and fixed copyright headers.Jack Moffitt-1/+22
2013-04-05Implement Clone for @ and @mut types.Jack Moffitt-0/+10
2013-03-26core: Make sure every module at least has a one-line descriptionBrian Anderson-2/+13
2013-03-15impl Clone for ~T, ~[T], ~strBen Striegel-0/+5
2013-03-09core: implement Clone for primitive typesAndrew Paseltiner-0/+28
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-1/+1
2013-01-30librustc: Change `self` as a type to `Self` everywhere. r=brsonPatrick Walton-1/+1
2013-01-14Inlining methods/functions in core.gifnksm-0/+1
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-27core: Add Clone traitBrian Anderson-0/+10