about summary refs log tree commit diff
path: root/src/libcore/clone.rs
AgeCommit message (Expand)AuthorLines
2015-11-16Make note about traits that can be derivedSteve Klabnik-0/+2
2015-09-13Implement more traits for function pointersVadim Petrochenkov-42/+0
2015-06-17core: Split apart the global `core` featureAlex Crichton-5/+4
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-7/+7
2015-04-10Rollup merge of #24215 - alexcrichton:stabilize-clone-from, r=aturonManish Goregaokar-2/+1
2015-04-08std: Stabilize Clone::clone_fromAlex Crichton-2/+1
2015-04-07Add Clone impls for extern "C" and unsafe fnsKevin Ballard-0/+21
2015-03-24An example for cloneSteve Klabnik-0/+8
2015-02-14core: Use int/isize in Clone boilerplateBrian Anderson-2/+2
2015-01-23grandfathered -> rust1Brian Anderson-5/+5
2015-01-23Set unstable feature names appropriatelyBrian Anderson-2/+2
2015-01-21Remove 'since' from unstable attributesBrian Anderson-2/+2
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-7/+9
2015-01-08Improvements to feature stagingBrian Anderson-1/+1
2015-01-07markers -> markerNick Cameron-1/+1
2015-01-07Change `std::kinds` to `std::markers`; flatten `std::kinds::marker`Nick Cameron-1/+1
2015-01-06FalloutNick Cameron-1/+1
2015-01-02Fix fallout from change, adding explicit `Sized` annotations where necessary.Niko Matsakis-1/+1
2014-12-24Fix a typoSimonas Kazlauskas-1/+1
2014-12-20Stabilize cloneAaron Turon-3/+6
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-28/+28
2014-11-26/*! -> //!Steve Klabnik-12/+10
2014-11-17DSTify `impl Clone for &T`Jorge Aparicio-13/+3
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