variadic_generics 0.1.2

A first attempt in using traits & tuples to work around Rusts lack of variadic generics.
Documentation
  • Coverage
  • 61.54%
    8 out of 13 items documented0 out of 2 items with examples
  • Size
  • Source code size: 18.74 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 996.66 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • fkoep/variadic_generics-rs
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • fkoep

variadic_generics

A first attempt in using traits & tuples to work around Rusts lack of variadic generics.

link to API documentation

example usage

Add to your Cargo.toml:

[dependencies]
variadic_generics = "0.1"

Add to your crate root:

#[macro_use]
extern crate variadic_generics;
  • option_tuple showcases how to implement flatwrap(Option<T>...) -> Option<(T...)>

contribution guidelines

Make sure to cargo install rustfmt and cargo fmt the codebase before creating any commits!