std1 0.2.0

Simple -unofficial- additions to the rust standard library, via a quickly typeable name.
Documentation
  • Coverage
  • 33.33%
    2 out of 6 items documented0 out of 3 items with examples
  • Size
  • Source code size: 1.93 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.89 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • colbyn/std1
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • colbyn

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.