├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── hashmap.rs ├── src ├── hashentry.rs ├── hashiter.rs ├── hashmap.rs ├── hashmap_serde.rs ├── leapiter.rs ├── leapmap.rs ├── leapmap_serde.rs ├── leapref.rs ├── lib.rs └── util.rs └── tests ├── basic.rs ├── cuckoo.rs └── hashmap.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/README.md -------------------------------------------------------------------------------- /benches/hashmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/benches/hashmap.rs -------------------------------------------------------------------------------- /src/hashentry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/hashentry.rs -------------------------------------------------------------------------------- /src/hashiter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/hashiter.rs -------------------------------------------------------------------------------- /src/hashmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/hashmap.rs -------------------------------------------------------------------------------- /src/hashmap_serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/hashmap_serde.rs -------------------------------------------------------------------------------- /src/leapiter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/leapiter.rs -------------------------------------------------------------------------------- /src/leapmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/leapmap.rs -------------------------------------------------------------------------------- /src/leapmap_serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/leapmap_serde.rs -------------------------------------------------------------------------------- /src/leapref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/leapref.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/src/util.rs -------------------------------------------------------------------------------- /tests/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/tests/basic.rs -------------------------------------------------------------------------------- /tests/cuckoo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/tests/cuckoo.rs -------------------------------------------------------------------------------- /tests/hashmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclu/leapfrog/HEAD/tests/hashmap.rs --------------------------------------------------------------------------------