mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-30 13:06:28 +03:00
85d7d0bf56
Add non-panicking variants of pow for integer types Currently, calling pow may panic in case of overflow, and the function does not have non-panicking counterparts. Thus, it would be beneficial to add those in. Closes #48291. Relevant tracking issue: #48320