Branches

Crates.io Documentation MIT licensed

branches provides branch hinting prediction and control functions for optimization of algorithms, using built-in Rust features on stable and core::intrinsics on nightly.

Usage

To use branches, add the following to your Cargo.toml file:

toml [dependencies] branches = "0.1"

Functions

The following functions are provided by branches:

Here's an example of how you can use likely to optimize a function:

```rust use branches::likely;

pub fn factorial(n: usize) -> usize { if likely(n > 1) { n * factorial(n - 1) } else { 1 } } ```

By correctly using the functions provided by branches, you can achieve a 10-20% improvement in the performance of your algorithms.

License

branches is licensed under the MIT license. See the LICENSE file for more information.