| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-08-13 | core: Add binary_search and binary_search_elem methods to slices. | Brian Anderson | -6/+7 | |
| These are like the existing bsearch methods but if the search fails, it returns the next insertion point. The new `binary_search` returns a `BinarySearchResult` that is either `Found` or `NotFound`. For convenience, the `found` and `not_found` methods convert to `Option`, ala `Result`. Deprecate bsearch and bsearch_elem. | ||||
| 2014-08-13 | std: Rename various slice traits for consistency | Brian Anderson | -1/+1 | |
| ImmutableVector -> ImmutableSlice ImmutableEqVector -> ImmutableEqSlice ImmutableOrdVector -> ImmutableOrdSlice MutableVector -> MutableSlice MutableVectorAllocating -> MutableSliceAllocating MutableCloneableVector -> MutableCloneableSlice MutableOrdVector -> MutableOrdSlice These are all in the prelude so most code will not break. [breaking-change] | ||||
| 2014-08-08 | Register new snapshot 12e0f72 | Niko Matsakis | -3/+0 | |
| 2014-07-28 | collections, unicode: Add support for NFC and NFKC | Florian Zeitz | -0/+153 | |
