refactor(users/edef/weave): simplify DoubleEndedIterator bound
Thanks, Clippy! Change-Id: I116b478124b72e070e94150ee850532752f64d60 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12669 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
5d235ff283
commit
25671c284f
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ pub fn load_ph_array() -> Result<FixedBytes<20>> {
|
|||
/// Iterator over `&[[u8; N]]` from a dense [BinaryChunked].
|
||||
pub fn as_fixed_binary<const N: usize>(
|
||||
chunked: &BinaryChunked,
|
||||
) -> impl Iterator<Item = &[[u8; N]]> + DoubleEndedIterator {
|
||||
) -> impl DoubleEndedIterator<Item = &[[u8; N]]> {
|
||||
chunked.downcast_iter().map(|array| {
|
||||
let range = assert_fixed_dense::<N>(array);
|
||||
exact_chunks(&array.values()[range]).unwrap()
|
||||
|
|
Loading…
Reference in a new issue