about summary refs log tree commit diff
path: root/src/libcollections
AgeCommit message (Expand)AuthorLines
2015-07-08'iff' for docs to 'if and only if'Esption-1/+1
2015-07-08Auto merge of #26869 - alexcrichton:fix-msvc-sepcomp, r=nrcbors-0/+1
2015-07-08trans: Link rlibs to dylibs with --whole-archiveAlex Crichton-0/+1
2015-07-08Improve Vec::resize so that it can be used in Read::read_to_endUlrik Sverdrup-21/+28
2015-07-08Fixed some occurrences of 'if' being spelled 'iff'Esption-1/+1
2015-07-06Auto merge of #26817 - cmr:vecdeque-docs, r=Gankrobors-0/+4
2015-07-05Rollup merge of #26806 - cmr:stabilize-drain, r=GankroSteve Klabnik-14/+14
2015-07-05Rollup merge of #26464 - Gankro:send, r=alexcrichtonSteve Klabnik-3/+0
2015-07-05collections: vec_deque: add some notes on how to use VecDeque as a queue effe...Corey Richardson-0/+4
2015-07-05collections: vec_deque: rename "ringbuf" to "VecDeque" in doc commentsCorey Richardson-14/+14
2015-07-04str: Correct documentation on is_char_boundaryUlrik Sverdrup-3/+1
2015-07-03remove some feature gates from the docsSteve Klabnik-4/+0
2015-07-02Add more description for from_raw_parts's unsafetySteve Klabnik-3/+18
2015-07-01Auto merge of #26034 - Gankro:deprecate-bits, r=alexcrichtonbors-0/+9
2015-07-01fallout of bitvec/bitset deprecationAlexis Beingessner-1/+5
2015-06-30Rollup merge of #26678 - bluss:doc-fmt, r=steveklabnikSteve Klabnik-22/+23
2015-06-30Deprecate BitSet and BitVec in favour of bit-vec and bit-set crates in cargoAlexis Beingessner-0/+5
2015-06-30fmt: Update docs and mention :#? pretty-printingUlrik Sverdrup-22/+23
2015-06-26Auto merge of #25646 - huonw:align, r=alexcrichtonbors-16/+16
2015-06-24Avoid overflow in Vec::from_iterSteven Fackler-2/+3
2015-06-24Make `align_of` behave like `min_align_of`.Huon Wilson-16/+16
2015-06-20remove redundant Send and Sync impl from VecAlexis Beingessner-3/+0
2015-06-17std: Stabilize vec_map::Entry::or_insert{,_with}Alex Crichton-8/+7
2015-06-17More test fixes and fallout of stability changesAlex Crichton-10/+18
2015-06-17std: Stabilize the `str_matches` featureAlex Crichton-6/+4
2015-06-17std: Deprecate Vec::from_raw_bufAlex Crichton-0/+2
2015-06-17std: Deprecate all permutation-related slice methodsAlex Crichton-0/+6
2015-06-17Fallout in tests and docs from feature renamingsAlex Crichton-118/+120
2015-06-17std: Split the `std_misc` featureAlex Crichton-1/+1
2015-06-17collections: Split the `collections` featureAlex Crichton-133/+148
2015-06-17alloc: Split apart the global `alloc` featureAlex Crichton-0/+3
2015-06-17core: Split apart the global `core` featureAlex Crichton-7/+23
2015-06-17Auto merge of #22681 - mzabaluev:extend-faster, r=huonwbors-39/+39
2015-06-11Auto merge of #26190 - Veedrac:no-iter, r=alexcrichtonbors-18/+18
2015-06-11Conver reborrows to .iter() calls where appropriateJoshua Landau-1/+1
2015-06-11Auto merge of #26154 - pmarcelll:master, r=Gankrobors-17/+17
2015-06-11Auto merge of #26122 - bluss:borrow-box, r=alexcrichtonbors-1/+9
2015-06-11Auto merge of #25839 - bluss:str-split-at-impl, r=alexcrichtonbors-45/+72
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-17/+17
2015-06-10Rollup merge of #26164 - tafia:early-dedup, r=GankroManish Goregaokar-1/+1
2015-06-10Rollup merge of #26146 - steveklabnik:remove_unsafe_pointer, r=GankroManish Goregaokar-3/+3
2015-06-10collections: Remove redundant slicing for strUlrik Sverdrup-45/+45
2015-06-10Add str::split_atUlrik Sverdrup-0/+27
2015-06-10Auto merge of #26130 - steveklabnik:gh25986, r=alexcrichtonbors-3/+28
2015-06-10early return if 1 elementJohann Tuffe-1/+1
2015-06-10Modify String::push to reallocate more conservatively in case of the characte...marcell-17/+17
2015-06-09Exise 'unsafe pointer' in favor of 'raw pointer'Steve Klabnik-3/+3
2015-06-09Auto merge of #26039 - SimonSapin:case-mapping, r=alexcrichtonbors-3/+32
2015-06-09Document str::split behavior with contiguous separatorsSteve Klabnik-3/+28
2015-06-09Implement Borrow<T> and BorrowMut<T> for Box<T: ?Sized>Ulrik Sverdrup-1/+9