├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── atomic_f64.rs ├── beta.rs ├── error.rs ├── hasher.rs ├── lib.rs └── math.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/README.md -------------------------------------------------------------------------------- /src/atomic_f64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/src/atomic_f64.rs -------------------------------------------------------------------------------- /src/beta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/src/beta.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- 1 | #[derive(Debug, PartialEq)] 2 | pub enum Error { 3 | IncompatibleLength, 4 | } 5 | -------------------------------------------------------------------------------- /src/hasher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/src/hasher.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomtomwombat/hyperloglockless/HEAD/src/math.rs --------------------------------------------------------------------------------