Skip to content

Commit edaabbf

Browse files
committed
avoid const assert to keep msrv
1 parent 532758a commit edaabbf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/arrays.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ pub struct Arrays<I: Iterator, const N: usize> {
1313

1414
impl<I: Iterator, const N: usize> Arrays<I, N> {
1515
pub(crate) fn new(iter: I) -> Self {
16-
const {
17-
assert!(N > 0);
18-
}
16+
// this is effectively assert!(N > 0);
17+
const { N - 1 };
1918
// TODO should we use iter.fuse() instead? Otherwise remainder may behave strangely
2019
Self {
2120
iter,

0 commit comments

Comments
 (0)