std1

Crates.iostd1
lib.rsstd1
version0.2.0
sourcesrc
created_at2023-02-13 00:09:05.920226
updated_at2023-02-13 01:04:58.702407
descriptionSimple -unofficial- additions to the rust standard library, via a quickly typeable name.
homepage
repositoryhttps://github.com/colbyn/std1
max_upload_size
id783589
size2,028
Colbyn (colbyn)

documentation

README

WIP

Nothing to see here, just initialized the location of my rust std add-ons

Mostly just wanted a place to factor out my generic associated type based trait utils, e.g.

pub trait ToRef {
    /// The dedicated type with references therein.
    type Type<'a>: Clone where Self: 'a;
    fn to_ref<'a>(&'a self) -> Self::Type<'a>;
}

Long-term

Simple -unofficial- additions to the rust standard library, via a quickly typeable name.

Commit count: 8

cargo fmt