]> git.lizzy.rs Git - rust.git/history - library
Rollup merge of #76522 - matthiaskrgr:redundant_clone, r=jonas-schievink
[rust.git] / library /
2020-09-05 Dylan DPCRollup merge of #75954 - ArekPiekarz:unstable_book_ffi_...
2020-09-05 Dylan DPCRollup merge of #75695 - JohnTitor:regression-test...
2020-09-05 Mara BosAdd compile_fail test for SyncOnceCell's dropck issue.
2020-09-05 Mara BosFix dropck issue of SyncOnceCell.
2020-09-05 Ayush Kumar MishraAdded str tests in library
2020-09-05 borsAuto merge of #75584 - RalfJung:union-no-deref, r=matth...
2020-09-05 borsAuto merge of #75888 - GuillaumeGomez:trait-impl-assoc...
2020-09-05 Wilfred HughesMinor grammar fix in doc comment for soft-deprecated...
2020-09-05 borsAuto merge of #75173 - jackh726:chalk-0.21, r=nikomatsakis
2020-09-05 Lzu TaoIndent a note to make folding work nicer
2020-09-04 Scott McMurrayAdd `BREAK` too, and improve the comments
2020-09-04 borsAuto merge of #75200 - ssomers:btree_valmut, r=Mark...
2020-09-04 Chris GillespieFix nlink example typo
2020-09-04 CamelidImprove docs for `std::env::args()`
2020-09-04 borsAuto merge of #76292 - Aaron1011:fix/proc-macro-panic...
2020-09-04 Andy Russelladd some intra-doc links to `Iterator`
2020-09-04 borsAuto merge of #76315 - lcnr:map-track-caller, r=Mark...
2020-09-04 borsAuto merge of #75655 - nielx:fix/haiku-llvm-libz, r...
2020-09-04 Mateusz MikułaFix warning whe building profiler_builtins crate
2020-09-04 borsAuto merge of #75207 - dylni:add-slice-check-range...
2020-09-04 Ayush Kumar MishraMove Vec slice UI tests in library
2020-09-04 Scott McMurrayUse ops::ControlFlow in graph::iterate
2020-09-04 numbermaniactime.rs: Make spelling of "Darwin" consistent
2020-09-04 Lzu TaoRemove a useless allowed attr
2020-09-04 Ivan ThamAdd slice primitive link to vec
2020-09-04 borsAuto merge of #76004 - richkadel:llvm-coverage-map...
2020-09-04 Christiaan DirkxMove various ui const tests to `library`
2020-09-03 borsAuto merge of #73996 - da-x:short-unique-paths, r=petro...
2020-09-03 Joshua NelsonLink to `#capacity-and-reallocation` when using with_ca...
2020-09-03 Joshua NelsonAddress review comments on `Peekable::next_if`
2020-09-03 borsAuto merge of #70793 - the8472:in-place-iter-collect...
2020-09-03 Christiaan DirkxMake `Ipv4Addr` and `Ipv6Addr` const tests unit tests...
2020-09-03 The8472fix debug assertion
2020-09-03 Rune TynanRemove vec-to_str.rs, merge the remaining test in with vec
2020-09-03 borsAuto merge of #73819 - euclio:rustdoc-summaries, r...
2020-09-03 The8472improve comments and naming
2020-09-03 The8472add explanation to specialization marker
2020-09-03 The8472remove separate no-drop code path since it resulted...
2020-09-03 The8472remove empty Vec extend optimization
2020-09-03 The8472please tidy
2020-09-03 The8472get things to work under min_specialization by leaning...
2020-09-03 The8472fix benchmark compile errors
2020-09-03 The8472apply required min_specialization attributes
2020-09-03 The8472support in-place collect for MapWhile adapters
2020-09-03 The8472pacify tidy
2020-09-03 The8472generalize in-place collect to types of same size and...
2020-09-03 The8472increase comment verbosity
2020-09-03 The8472work around compiler overhead around lambdas in generic...
2020-09-03 The8472extract IntoIter drop/forget used by specialization...
2020-09-03 The8472add benchmark to cover in-place extend
2020-09-03 The8472remove redundant cast
2020-09-03 The8472test drops during in-place iteration
2020-09-03 The8472move unsafety into method, not relevant to caller
2020-09-03 The8472replace unsafe ptr::write with deref-write, benchmarks...
2020-09-03 The8472pacify tidy
2020-09-03 The8472replace drop flag with ManuallyDrop
2020-09-03 The8472mark as_inner as unsafe and update comments
2020-09-03 The8472avoid exposing that binary heap's IntoIter is backed...
2020-09-03 The8472fix: bench didn't black_box its results
2020-09-03 The8472fix build issue due to stabilized feature
2020-09-03 The8472impl TrustedRandomAccess for vec::IntoIter
2020-09-03 The8472bench larger allocations
2020-09-03 The8472include in-place .zip() in test
2020-09-03 The8472remove unecessary feature flag
2020-09-03 The8472make tidy happy
2020-09-03 The8472support in-place iteration for most adapters
2020-09-03 The8472move free-standing method into trait impl
2020-09-03 The8472add in-place iteration for Zip
2020-09-03 The8472bench in-place zip
2020-09-03 The8472additional specializations tests
2020-09-03 The8472fix some in-place-collect edge-cases
2020-09-03 The8472remove redundant code
2020-09-03 The8472improve comments
2020-09-03 The8472specialize creating a Vec from a slice iterator where...
2020-09-03 The8472restore SpecFrom<T, TrustedLen<Item=T>> specialization...
2020-09-03 The8472use From specializations on extend if extended Vec...
2020-09-03 The8472exercise more of the in-place pipeline in the bench
2020-09-03 The8472bench in-place collect of droppables
2020-09-03 The8472cyclic in-place reuse bench
2020-09-03 The8472return the things under test so they get black_box...
2020-09-03 The8472add benches from bluss' gists
2020-09-03 The8472use memmove instead of generic in-place iteration for...
2020-09-03 The8472restore Vec::extend specialization for vec::IntoIter...
2020-09-03 The8472hide binary_heap::IntoIter internals behind impl Trait
2020-09-03 The8472remove example that relied on non-public trait
2020-09-03 The8472recover vectorization
2020-09-03 The8472update benches
2020-09-03 The8472simplify pointer arithmetic
2020-09-03 The8472fix doc link
2020-09-03 The8472use add instead of offset
2020-09-03 The8472implement drop handling
2020-09-03 The8472assert that SourceIter requirements have not been viola...
2020-09-03 The8472mark SourceIter as unsafe, document invariants
2020-09-03 The8472in-place collect for Vec. Box<[]> and BinaryHeap IntoIt...
2020-09-03 The8472bench
2020-09-03 The8472unrelated typo fix
2020-09-03 Aaron HillRespect `-Z proc-macro-backtrace` flag for panics insid...
2020-09-03 Ivan ThamLink & primitive using relative link
2020-09-03 borsAuto merge of #76235 - jyn514:std-intra-links, r=polior...
2020-09-03 Rune TynanRemove a number of vec UI tests, make them unit tests...
next