|
|
|
|
|
by bbatha
2842 days ago
|
|
It's been proposed before: https://internals.rust-lang.org/t/idea-polymorphic-baseline-... Its also fairly common to have code like: fn do_it(a: impl AsRef<i32>) {
let a = a.as_ref();
// do something with a
}
That could be instead monomorphised to be fn _do_it(a: &i32) {
// do something with a
}
fn do_it(a: impl AsRef<i32>) {
let a = a.as_ref();
_do_it(a)
}
saving the inlining of _do_it's code bloat/generation penalty. |
|