parlay 0.1.0

A Toolkit for Programming Parallel Algorithms on Shared-Memory Multicore Machines
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 2.24 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • zachary-kent

Parlay

A Rust crate.

Installation

Add this to your Cargo.toml:

[dependencies]
parlay = "0.1"

Usage

use parlay::add;

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

License

Licensed under either of

at your option.