helpers4 0.0.6

General-purpose Rust helpers, one crate, one feature per module (string, array, ...)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// This file is part of helpers4.
// Copyright (C) 2025 baxyz
// SPDX-License-Identifier: LGPL-3.0-or-later

//! Helpers for any `Iterator`, not only slices: work on a lazy, single-use or unbounded source.

mod chunk;
mod first_duplicate;
mod min_max;

pub use chunk::chunk;
pub use first_duplicate::first_duplicate;
pub use min_max::min_max;