about summary refs log tree commit diff
path: root/library/core/src/str/traits.rs
AgeCommit message (Expand)AuthorLines
2025-08-06tidyBoxy-2/+2
2025-07-21Constify Try, From, TryFromEvgenii Zheltonozhskii-0/+2
2025-07-17Make slices `[const] PartialEq`Oli Scherer-1/+2
2025-07-15constify `Index` trait and its slice implsOli Scherer-4/+6
2025-07-15constify `SliceIndex` traitOli Scherer-9/+18
2025-06-03`FromStr`: Rework explanation of `FromStr`/`Display` round-trippingJosh Triplett-6/+5
2025-06-03Add some more description of interactions between `Display` and `FromStr`Josh Triplett-0/+6
2025-06-03Improve the documentation of `Display` and `FromStr`, and their interactionsJosh Triplett-0/+9
2025-05-21Add some track_caller info to precondition panicsBen Kimock-0/+4
2024-09-08remove const_slice_index annotations, it never had a feature gate anywayRalf Jung-6/+0
2024-07-29Reformat `use` declarations.Nicholas Nethercote-5/+2
2024-07-05add `new_range_api` for RFC 3550Peter Jaszkowiak-0/+195
2024-04-06Use unchecked_sub in str indexingBen Kimock-6/+9
2024-03-23move assert_unsafe_preconditions to its own fileRalf Jung-1/+1
2024-03-08Distinguish between library and lang UB in assert_unsafe_preconditionBen Kimock-7/+17
2024-02-19Convert debug_assert_nounwind to intrinsics::debug_assertionsBen Kimock-2/+2
2023-11-25Convert many `assert_unsafe_precondition` to `debug_assert_nounwind`Gary Guo-25/+21
2023-10-05Add more diagnostic items for clippyJason Newcomb-0/+1
2023-08-22Replace version placeholders with 1.73.0Mark Rousskov-1/+1
2023-07-31Work around missing <*str>::lenMatt Fellenz-4/+4
2023-07-31impl SliceIndex<str> for (Bound<usize>, Bound<usize>)Matt Fellenz-0/+52
2023-04-16rm const traits in libcoreDeadbeef-12/+10
2023-03-05Auto merge of #105117 - pitaj:debug_asserts, r=the8472bors-31/+41
2023-03-04Comment for why char boundaries aren't checkedPeter Jaszkowiak-0/+6
2023-03-02Remove manual implementation of str::neKonrad Borowski-4/+0
2023-01-21debug assertions for `slice::split_at_unchecked`, `str::get_unchecked`Peter Jaszkowiak-31/+35
2022-10-02Improve `FromStr` exampleEduardo Sánchez Muñoz-5/+9
2022-09-21Add missing documentation for `bool::from_str`Guillaume Gomez-2/+2
2022-07-18Use split_once in FromStr docsDavid Herberth-6/+8
2022-05-19Add implicit call to from_str via parse in documentationSylvainDe-2/+6
2022-03-06Constify slice index for stringsDeadbeef-11/+19
2021-10-22docs: Escape brackets to satisfy the linkcheckerNoah Lev-5/+4
2021-10-14Add missing word to `FromStr` trait docsAdam Skoufis-1/+1
2021-06-24Use `#[non_exhaustive]` where appropriateJacob Pratt-1/+1
2021-02-25Convert the rest of the standard library primitives to intra-doc linksJoshua Nelson-3/+1
2020-10-26Add lexicographical comparison docRustin-Liu-2/+2
2020-10-24Rollup merge of #78109 - cuviper:exhausted-rangeinc, r=dtolnayJonas Schievink-10/+6
2020-10-20Check for exhaustion in SliceIndex for RangeInclusiveJosh Stone-10/+6
2020-10-15Following #74010 by converting some newer cases of backticked O notations to ...Ryan Scott-6/+6
2020-09-26Move traits implementation of str to new modLzu Tao-0/+597