wetutil 0.1.1

One-stop crate for all the rust features that I'm missing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `wetutil`: One-stop crate for all the rust features that I'm missing.
//!
//! This crate implements some useful extension traits
//! for things like [`Result`] and [`Iterator`].
//! It's mostly a mish-mash of things that I'm tired of writing in more tedious ways.

pub mod iter;
pub mod result;

/// This crate's prelude
///
/// It re-exports extension traits.
pub mod prelude {
	pub use crate::iter::IterExt;
	pub use crate::result::{ResultErrInto, ResultOkInto, ResultValueInto};
}