variadic_arguments 0.1.2

Implements variadic arguments into Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod variant_info;
mod inlined;
mod owned;
mod boxed_argument;
mod discriminant;
// Unsure what to do about it.
//mod borrowed_arg;

pub use owned::OwnedArgument;

pub(crate) use variant_info::VariantHandle;

mod arg;

pub use arg::{Argument, ArgumentKind};