This recommends the compiler inline all methods, allowing it to significantly speed up operations. Note that this is different from [inline(always)] in that we're not forcing the compiler to inline, but merely hint it probably should, and enable it to do so across crate boundaries.
This recommends the compiler inline all methods, allowing it to significantly speed up operations. Note that this is different from
[inline(always)]
in that we're not forcing the compiler to inline, but merely hint it probably should, and enable it to do so across crate boundaries.Thanks!