You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If iter yields k items then iter.array_windows::<N>() yields (k + 1).saturating_sub(N) items. While the condition N > 0 is currently not enforceable via where bounds, we can have the impl concretely for N in 1..=12.
If
iteryieldskitems theniter.array_windows::<N>()yields(k + 1).saturating_sub(N)items. While the conditionN > 0is currently not enforceable via where bounds, we can have theimplconcretely forNin1..=12.