Source code
Revision control
Copy as Markdown
Other Tools
use extend::ext;
#[ext(pub(crate), name = Foo)]
impl i32 {
fn foo() {}
}
#[ext(pub, name = Bar)]
impl i64 {
fn foo() {}
}
fn main() {}
use extend::ext;
#[ext(pub(crate), name = Foo)]
impl i32 {
fn foo() {}
}
#[ext(pub, name = Bar)]
impl i64 {
fn foo() {}
}
fn main() {}