parlay 0.1.0

A Toolkit for Programming Parallel Algorithms on Shared-Memory Multicore Machines
Documentation
# Parlay

A Rust crate.

## Installation

Add this to your `Cargo.toml`:

```toml
[dependencies]
parlay = "0.1"
```

## Usage

```rust
use parlay::add;

fn main() {
    let result = add(2, 2);
    println!("Result: {}", result);
}
```

## License

Licensed under either of

- Apache License, Version 2.0 ([LICENSE-APACHE]LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license ([LICENSE-MIT]LICENSE-MIT or http://opensource.org/licenses/MIT)

at your option.