about summary refs log tree commit diff
path: root/src/libcore
AgeCommit message (Expand)AuthorLines
2016-08-22replace `BitAnd` example with something more evocative of bitwise ANDMatthew Piziak-12/+27
2016-08-22replace `Mul` example with something more evocative of multiplicationMatthew Piziak-10/+47
2016-08-21Auto merge of #35777 - nrc:carrier3, r=@nikomatsakisbors-0/+72
2016-08-21replace `println!` statements with `assert!`ions in `std::ptr` examplesMatthew Piziak-4/+8
2016-08-21Added #![feature] declarationsphilipp-0/+2
2016-08-20replace `Index` example with something more evocative of indexingMatthew Piziak-13/+29
2016-08-20replace `Rem` example with something more evocativeMatthew Piziak-11/+19
2016-08-20show how iterating over `RangeTo` and `RangeToInclusive` failsMatthew Piziak-12/+43
2016-08-20Introduce max_by/min_by on iteratorsphilipp-0/+51
2016-08-20Rollup merge of #35830 - matthew-piziak:not-example, r=steveklabnikJonathan Turner-11/+22
2016-08-20Rollup merge of #35827 - matthew-piziak:neg-example, r=steveklabnikJonathan Turner-11/+16
2016-08-20Rollup merge of #35806 - matthew-piziak:addassign-example, r=steveklabnikJonathan Turner-10/+21
2016-08-20Rollup merge of #35800 - matthew-piziak:mul-div-examples, r=steveklabnikJonathan Turner-0/+62
2016-08-20Rollup merge of #35710 - matthew-piziak:explicit-drop, r=steveklabnikJonathan Turner-0/+7
2016-08-20Rollup merge of #35709 - matthew-piziak:add-trait-example, r=GuillaumeGomezJonathan Turner-11/+23
2016-08-20Rollup merge of #35701 - matthew-piziak:rangefull-example-error, r=steveklabnikJonathan Turner-7/+20
2016-08-20Auto merge of #35607 - alexcrichton:stabilize-1.12, r=brsonbors-10/+48
2016-08-19Remove old stage0 compatibilityBrian Anderson-51/+29
2016-08-19std: Stabilize APIs for the 1.12 releaseAlex Crichton-10/+48
2016-08-19replace `Neg` example with something more evocative of negationMatthew Piziak-11/+22
2016-08-19replace `Not` example with something more evocativeMatthew Piziak-11/+16
2016-08-18Auto merge of #35719 - Amanieu:atomic_access, r=alexcrichtonbors-0/+142
2016-08-19Remove the Option and bool impls for carrier and add a dummy implNick Cameron-60/+7
2016-08-18replace `AddAssign` example with something more evocative of additionMatthew Piziak-10/+21
2016-08-18note that calling drop() explicitly is a compiler errorMatthew Piziak-0/+7
2016-08-18split example into three sections with explanationMatthew Piziak-3/+14
2016-08-18demonstrate `RHS != Self` use cases for `Mul` and `Div`Matthew Piziak-0/+62
2016-08-18Add a FusedIterator trait.Steven Allen-11/+262
2016-08-18Use a Carrier trait with the `?` operatorNick Cameron-0/+125
2016-08-17replace Add example with something more evocative of additionMatthew Piziak-11/+23
2016-08-17Rollup merge of #35695 - matthew-piziak:vec-assert-over-println, r=GuillaumeG...Jonathan Turner-15/+2
2016-08-17Rollup merge of #35690 - matthew-piziak:op-overloading-limited, r=steveklabnikJonathan Turner-3/+8
2016-08-17Rollup merge of #35663 - CryZe:no-stdlib, r=ManishearthJonathan Turner-0/+5
2016-08-16Implement RFC 1649Amanieu d'Antras-0/+142
2016-08-16Implement `AsRef<[T]>` for `std::slice::Iter`.Corey Farwell-0/+8
2016-08-16RangeFull for-loop iteration fails because of IntoIteratorMatthew Piziak-1/+1
2016-08-16Auto merge of #35162 - canndrew:bang_type_coerced, r=nikomatsakisbors-0/+59
2016-08-15explicitly show how iterating over `..` failsMatthew Piziak-8/+10
2016-08-15remove `.take(10)` from `Range` exampleMatthew Piziak-1/+1
2016-08-15accumulate into vector and assert, instead of printingMatthew Piziak-15/+2
2016-08-15expound on limitations of Rust's trait-based operator overloadingMatthew Piziak-3/+8
2016-08-14Implement `CoerceUnsized` for `{Cell, RefCell, UnsafeCell}`Andrew Paseltiner-0/+16
2016-08-14Rollup merge of #35622 - matthew-piziak:convert-docs-typos, r=apasel422Eduard-Mihai Burtescu-4/+4
2016-08-14Rollup merge of #35588 - Antti:fix-atomics-docs, r=alexcrichtonEduard-Mihai Burtescu-1/+1
2016-08-14Rollup merge of #35392 - malbarbo:cell-from, r=brsonEduard-Mihai Burtescu-0/+22
2016-08-14Improve `No stdlib` and related DocumentationChristopher Serr-0/+5
2016-08-13Rename empty/bang to neverAndrew Cann-7/+7
2016-08-13Minor fixups based on @eddyb's feedbackAndrew Cann-4/+6
2016-08-13Control usage of `!` through a feature gate.Andrew Cann-0/+1
2016-08-13implement std::cmp::* traits for `!`Andrew Cann-0/+33