davenport

davenport is a Rust microcrate that provides ergonomic thread-local workspaces for intermediate data.

```rust use davenport::{definethreadlocalworkspace, withthreadlocalworkspace};

[derive(Default)]

pub struct MyWorkspace { index_buffer: Vec }

definethreadlocal_workspace!(WORKSPACE);

fn medianfloor(indices: &[usize]) -> Option { withthreadlocalworkspace(&WORKSPACE, |workspace: &mut MyWorkspace| { // Re-use buffer from previous call to this function let buffer = &mut workspace.indexbuffer; buffer.clear(); buffer.copyfromslice(&indices); buffer.sortunstable(); buffer.get(indices.len() / 2).copied() }) } ```

See the documentation for an in-depth explanation of the crate.

License

Licensed under the terms of both MIT and Apache 2.0 at your option. See LICENSE-MIT and LICENSE-APACHE for the detailed license text.