├── .gitignore ├── .vscode └── settings.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── phenotype-internal ├── Cargo.toml └── src │ └── lib.rs ├── phenotype-macro ├── Cargo.toml └── src │ ├── generic.rs │ └── lib.rs └── src ├── array.rs ├── lib.rs ├── main.rs └── peapod_vec.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["bitvec", "peapod"] 3 | } 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/README.md -------------------------------------------------------------------------------- /phenotype-internal/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/phenotype-internal/Cargo.toml -------------------------------------------------------------------------------- /phenotype-internal/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/phenotype-internal/src/lib.rs -------------------------------------------------------------------------------- /phenotype-macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/phenotype-macro/Cargo.toml -------------------------------------------------------------------------------- /phenotype-macro/src/generic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/phenotype-macro/src/generic.rs -------------------------------------------------------------------------------- /phenotype-macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/phenotype-macro/src/lib.rs -------------------------------------------------------------------------------- /src/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/src/array.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/peapod_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fprasx/peapod/HEAD/src/peapod_vec.rs --------------------------------------------------------------------------------