cursed-collections 0.8.3

Collections that (seem to) break Rust safety.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Cursed Collections

Collections that (seem) to break Rust safety.
* `SymbolTable`: a memory-efficient set of `String`, where its members can be equality compared in constant time.
* `AppendOnlyVec`: a sequence where elements can be appended even when you hold reference to previous elements.
* `LazyArray`: an array where elements can be initialized at a later time, even where reference to other, initialized
  elements exist.

## Safety

All collections in this crate are implemented with unsafe code. While I cannot be 100% sure the interface they offer is
safe, I use the following techniques to increase my confidence.
* Property based testing with [quickcheck]https://github.com/BurntSushi/quickcheck.
* Dynamic analysis with [Miri]https://github.com/rust-lang/miri.

## Documentation

https://docs.rs/cursed-collections/