| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -19/+0 | |
| 2020-06-10 | Migrate to numeric associated consts | Lzu Tao | -2/+2 | |
| 2020-02-22 | Stabilize const for integer {to,from}_{be,le,ne}_bytes methods | Trevor Spiteri | -2/+0 | |
| All of these functions can be implemented simply and naturally as const functions, e.g. u32::from_le_bytes can be implemented as (bytes[0] as u32) | (bytes[1] as u32) << 8 | (bytes[2] as u32) << 16 | (bytes[3] as u32) << 24 So stabilizing the constness will not expose that internally they are implemented using transmute which is not const in stable. | ||||
| 2019-07-27 | tests: Move run-pass tests with naming conflicts to ui | Vadim Petrochenkov | -0/+21 | |
