pie_core 0.2.1

A high-performance, index-based data structure toolkit. Provides an arena allocator (ElemPool) used to build a cache-friendly PieList (doubly-linked list) and FibHeap (priority queue).
Documentation
# Just recipes for build actions
alias bin := release
alias old := outdated

all: build examples release

bench:
    cargo bench
    target/release/bench-table

build:
    cargo build --all-targets && cargo clippy

examples:
    cargo build --examples
    cargo build -p bench-table --release

outdated:
    cargo outdated --depth=1

release:
    cargo build --release

test:
    cargo nextest run --test-threads num-cpus

test-out:
    cargo nextest run --no-capture --test-threads num-cpus

test-rel:
    cargo nextest run --release --test-threads num-cpus

tests: test test-rel