Rus Lib Updated Jun 2026

use rus_lib::prelude::*;

let some_value = Some(42); let result = some_value.ok_or_else(|| "Value was missing"); rus lib

let data = vec ![1, 2, 3, 4, 5, 6, 7]; for batch in data.into_iter().batched(3) println!(":?", batch); let some_value = Some(42)

The missing pieces of the Rust Standard Library. Description: A lightweight, zero-dependency (optional deps) utility crate that extends the standard library with ergonomic helpers, type extensions, and safety wrappers to reduce boilerplate in everyday Rust development. let data = vec ![1

use rus_lib::safe_exec;

Scroll to Top