datrs / flat-tree

Map a binary tree to a vector.
Apache License 2.0
53 stars 10 forks source link

inline all methods #39

Closed yoshuawuyts closed 6 years ago

yoshuawuyts commented 6 years ago

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!