Branches

Crates.io Documentation MIT licensed

branches provides branch hinting and control functions for Rust, 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.0"

Then, import the branches crate and use the branch detection functions like so:

```rust use branches::likely;

fn is_even(num: i32) -> bool { likely(num % 2 == 0) } ```

Functions

The following functions are provided by branches:

License

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