about summary refs log tree commit diff
path: root/src/liballoc/collections/linked_list.rs
AgeCommit message (Expand)AuthorLines
2020-07-27mv std libs to library/mark-1904/+0
2020-07-19Use italics for O notationpierwill-10/+10
2020-06-19`#[deny(unsafe_op_in_unsafe_fn)]` in liballocLeSeulArtichaut-11/+25
2020-05-29Add Extend::{extend_one,extend_reserve}Josh Stone-0/+10
2020-05-04whoopsmain()-1/+1
2020-05-04Add remove_current_as_list to LinkedList's CursorMutmain()-0/+25
2020-04-26fix more clippy warningsMatthias Krüger-1/+1
2020-04-25Rollup merge of #71548 - crlf0710:cursor_bounds, r=AmanieuDylan DPC-0/+12
2020-04-25Rollup merge of #71168 - SimonSapin:into_raw_non_null, r=AmanieuDylan DPC-9/+7
2020-04-25Use the correct bound for `Cursor` `Send`Charles Lew-1/+1
2020-04-25Add missing Send and Sync bounds for linked list Cursor and CursorMut.Charles Lew-0/+12
2020-04-17Rollup merge of #71167 - RalfJung:big-o, r=shepmasterDylan DPC-10/+10
2020-04-17Implement `Clone` for `liballoc::collections::linked_list::Cursor`.Charles Lew-0/+8
2020-04-15Deprecate `Box::into_raw_non_null`Simon Sapin-9/+7
2020-04-15big-O notation: parenthesis, multiplication and backticksRalf Jung-10/+10
2020-03-12remove lifetimes that can be elided (clippy::needless_lifetimes)Matthias Krüger-1/+1
2020-03-07Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkovMazdak Farrokhzad-3/+3
2020-03-06Don't redundantly repeat field names (clippy::redundant_field_names)Matthias Krüger-1/+1
2020-03-06fix various typosMatthias Krüger-3/+3
2020-02-26Auto merge of #67290 - jonas-schievink:leak-audit, r=KodrAusbors-1/+18
2020-02-19Add LinkedList::remove()Bijan Tabatabai-0/+46
2020-01-19FormatJonas Schievink-2/+5
2020-01-19Avoid leak in DrainFilter when a drop panicsJonas Schievink-1/+15
2020-01-14Update APIs according to RFC change suggestions.Charles Lew-10/+33
2020-01-12Address review comments.Charles Lew-2/+24
2020-01-12Address review comments.Charles Lew-78/+155
2020-01-12Implement Cursor for linked lists. (RFC 2570).Charles Lew-24/+433
2019-12-26Remove redundant link textsMatthew Kraai-1/+1
2019-12-22Format the worldMark Rousskov-72/+38
2019-12-18Propagate cfg bootstrapMark Rousskov-4/+1
2019-12-13Require stable/unstable annotations for the constness of all stable functions...Oliver Scherer-0/+4
2019-12-12LinkedList: drop remaining items when drop panicsJonas Schievink-1/+15
2019-11-07Rollup merge of #66117 - olegnn:fixed_linked_list_marker, r=RalfJungYuki Okushi-1/+1
2019-11-05Reverted PhantomData in LinkedList, fixed PhantomData markers in Rc and ArcOleg Nosov-2/+2
2019-11-05LinkedList: PhantomData<Box<Node<T>>> => PhantomData<T>Oleg Nosov-3/+3
2019-10-31docs: improve disclaimer regarding LinkedListTshepang Lekhonkhobe-7/+7
2019-10-02Use zipped iterators in clone_from for LinkedListCharles Gleason-2/+2
2019-10-01Implement Clone::clone_from for LinkedListCharles Gleason-0/+13
2019-08-18Constify LinkedList new functionGrayJack-1/+1
2019-08-02liballoc: Unconfigure tests during normal buildVadim Petrochenkov-270/+3
2019-07-18Fix clippy::clone_on_copy warningsMateusz Mikuła-4/+4
2019-07-04Rollup merge of #62316 - khuey:efficient_last, r=sfacklerMazdak Farrokhzad-0/+10
2019-07-02When possible without changing semantics, implement Iterator::last in terms o...Kyle Huey-0/+10
2019-07-01Convert more usages overChris Gregory-1/+1
2019-04-19Auto merge of #60072 - RalfJung:linked-list, r=shepmasterbors-11/+37
2019-04-19fix LinkedList invalidating mutable referencesRalf Jung-11/+37
2019-04-18make liballoc internal test suite mostly pass in MiriRalf Jung-0/+2
2019-04-05Use for_each to extend collectionsJosh Stone-3/+1
2019-02-17Use more impl header lifetime elisionScott McMurray-4/+4
2019-02-03liballoc: revert nested imports style changes.Mazdak Farrokhzad-10/+11