vcombey / fallible_collections

impl fallible collections in rust, quite as describe in RFC 2116
Apache License 2.0
31 stars 14 forks source link

Annotate small functions with #[inline] #15

Closed kornelski closed 3 years ago

kornelski commented 3 years ago

#[inline] annotations help inlining methods across crates, even without LTO.

I've also put #[inline(always)] on functions that only forward their call to another function, since that is a pure win, even from code size perspective.