| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-09-01 | Constify conversion traits | ltdk | -9/+10 | |
| 2025-07-21 | Constify Try, From, TryFrom | Evgenii Zheltonozhskii | -8/+16 | |
| 2025-06-02 | remove f16: From<u16> | usamoi | -1/+0 | |
| 2025-03-11 | Add `From<{integer}>` for `f16`/`f128` impls | beetrees | -2/+48 | |
| 2024-07-26 | Fix doc nits | John Arundel | -4/+4 | |
| Many tiny changes to stdlib doc comments to make them consistent (for example "Returns foo", rather than "Return foo", per RFC1574), adding missing periods, paragraph breaks, backticks for monospace style, and other minor nits. https://github.com/rust-lang/rfcs/blob/master/text/1574-more-api-documentation-conventions.md#appendix-a-full-conventions-text | ||||
| 2024-05-04 | Re-add `From<f16> for f64` | beetrees | -2/+3 | |
| 2024-04-11 | Remove `From` impls for unstable types that break inference | Trevor Gross | -2/+2 | |
| Adding additional `From` implementations that fit `f32::from(<unaffixed float>)` broke inference. Remove these for now. Fixes: <https://github.com/rust-lang/rust/issues/123824> | ||||
| 2024-04-10 | Add basic library support for `f16` and `f128` | Trevor Gross | -0/+7 | |
| Implement basic operation traits that get lowered to intrinsics. This includes codegen tests for implemented operations. | ||||
| 2024-03-25 | Import the 2021 prelude in the core crate | Daniel Paoliello | -4/+0 | |
| 2024-02-19 | Refactor trait implementations in `core::convert::num`. | Markus Reiter | -367/+325 | |
| 2023-12-10 | remove redundant imports | surechen | -1/+1 | |
| detects redundant imports that can be eliminated. for #117772 : In order to facilitate review and modification, split the checking code and removing redundant imports code into two PR. | ||||
| 2023-08-25 | use the correct link | cui fliter | -2/+2 | |
| Signed-off-by: cui fliter <imcusg@gmail.com> | ||||
| 2023-04-16 | rm const traits in libcore | Deadbeef | -16/+8 | |
| 2023-03-09 | Add examples section which demonstrates the behaviour (specifically the sign ↵ | bmoxb | -0/+20 | |
| positive aspect) | ||||
| 2023-03-09 | Add missing comment for f64 | bmoxb | -1/+2 | |
| 2023-03-09 | Indicate that `0.0` refers to positive `0.0` | bmoxb | -2/+2 | |
| 2023-03-09 | Document the resulting values produced when using `From<bool>` on floats | bmoxb | -1/+2 | |
| 2023-01-25 | Set version placeholders to 1.68 | Mark Rousskov | -2/+2 | |
| 2022-12-15 | Implement `From<bool>` for f32, f64 | Jacob Pratt | -0/+20 | |
| 2022-12-04 | Make integer-to-integer `From` impls `#[inline(always)]` | Eduardo Sánchez Muñoz | -1/+1 | |
| 2022-05-08 | Warn on unused doc(hidden) on trait impl items | León Orell Valerian Liehr | -1/+0 | |
| 2021-10-20 | Make `From` impls of NonZero integer const. | woppopo | -2/+3 | |
| I also changed the feature gate added to `From` impls of Atomic integer to `const_num_from_num` from `const_convert`. | ||||
| 2021-08-07 | impl const From<num> for num | Albin Hedman | -5/+10 | |
| 2021-06-23 | Use HTTPS links where possible | Smitty | -1/+1 | |
| 2021-04-22 | Get rid of "[+] show undocumented items" toggle on numeric From impls | Michael Howell | -4/+12 | |
| On most From implementations, the docstring is attached to the function. This is also how people have been [recommended] to do it. Screenshots: * [before](https://user-images.githubusercontent.com/1593513/115767662-323c5480-a35e-11eb-9918-98aba83e9183.png) * [after](https://user-images.githubusercontent.com/1593513/115767675-35374500-a35e-11eb-964f-c28eeb6c807a.png) [recommended]: https://github.com/rust-lang/rust/issues/51430#issuecomment-398322434 | ||||
| 2021-03-02 | FloatToInit: Replacing round_unchecked_to --> to_int_unchecked | Peter Kehl | -1/+1 | |
| FloatToInit docs: Replacing round_unchecked_to with to_int_unchecked. Bug #82709. | ||||
| 2020-10-15 | Bump nzint_try_from_nzint_conv stabilization version to 1.49. | Mara Bos | -1/+1 | |
| Missed the 1.48 cycle. | ||||
| 2020-09-29 | Implement TryFrom between NonZero types. | Mara Bos | -0/+46 | |
| 2020-07-27 | mv std libs to library/ | mark | -0/+487 | |
