This is the only non-generic function in this crate. Rustc doesn't
inline non-generic functions across crate boundaries, so without
#[inline], this trivial function would still end up taking space and
cpu time in crates that use this, even though it does literally nothing
at runtime.
This is the only non-generic function in this crate. Rustc doesn't inline non-generic functions across crate boundaries, so without
#[inline]
, this trivial function would still end up taking space and cpu time in crates that use this, even though it does literally nothing at runtime.