We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1667d6 commit ee4bdb9Copy full SHA for ee4bdb9
src/internal_type_traits.rs
@@ -14,9 +14,11 @@ use std::{
14
// - `is_unsigned_int_t<T>` (probably won't be used directly in `modint.rs`)
15
// - `to_unsigned_t<T>` (not used in `fenwicktree.rs`)
16
17
-// We will remove unnecessary bounds later.
18
-
19
/// Corresponds to `std::is_integral` in C++.
+// We will remove unnecessary bounds later.
+//
20
+// Maybe we should rename this to `PrimitiveInteger` or something, as it probably won't be used in the
21
+// same way as the original ACL.
22
pub(crate) trait Integral:
23
'static
24
+ Send
0 commit comments