We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const_eval_limit
1 parent 3b73e08 commit 5ea6388Copy full SHA for 5ea6388
src/lib.rs
@@ -56,15 +56,6 @@
56
//! pub const MODULUS_SHR1: U256 = MODULUS.shr(1);
57
//! ```
58
//!
59
-//! Note that large constant computations may accidentally trigger a the `const_eval_limit` of the compiler.
60
-//! The current way to deal with this problem is to either simplify this computation,
61
-//! or increase the compiler's limit (currently a nightly feature).
62
-//! One can completely remove the compiler's limit using:
63
-//! ```ignore
64
-//! #![feature(const_eval_limit)]
65
-//! #![const_eval_limit = "0"]
66
-//! ```
67
-//!
68
//! ### Trait-based usage
69
70
//! The [`Uint`] type itself does not implement the standard arithmetic traits
0 commit comments