This crate provides the #[mono]
macro to force a generic function to be monomorphizied with give types.
Pair with share-generics
mode in rustc, this can result less code, for details see https://github.com/rust-lang/rust/pull/48779.
toml
[dependencies]
mono-macro = "1.0"
Since we are monomorphizing ourselves, you are required to spell out the static dispatch handly:
In a bare function case, ```rust
fn func
it will be expanded to:
rust
pub const _: *const () = (&foo::<i32, i64>) as *const _ as _;
fn func<T, U>(t: T, u: U) {
...
}
[ ] impl methods
[ ] function like macro for complicated functions
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.