segmented_vector 0.2.0

a mutable vector type built from array segments, similar to clojure's persistent vector
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: lib

clean:
	cargo clean
	cargo clean --release

lib:
	cargo build
	cargo build --release

test:
	env RUST_BACKTRACE=1 cargo test -- --nocapture
	env RUST_BACKTRACE=1 cargo test --no-default-features -- --nocapture
	cargo doc --no-deps
	cargo clippy

.PHONY: clean lib test