Skip to content

Commit ee4bdb9

Browse files
committed
Add comment
1 parent e1667d6 commit ee4bdb9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/internal_type_traits.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ use std::{
1414
// - `is_unsigned_int_t<T>` (probably won't be used directly in `modint.rs`)
1515
// - `to_unsigned_t<T>` (not used in `fenwicktree.rs`)
1616

17-
// We will remove unnecessary bounds later.
18-
1917
/// Corresponds to `std::is_integral` in C++.
18+
// We will remove unnecessary bounds later.
19+
//
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.
2022
pub(crate) trait Integral:
2123
'static
2224
+ Send

0 commit comments

Comments
 (0)