├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── like_bench.rs ├── src └── lib.rs └── tests ├── test_basic.rs └── test_like.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/like_bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/benches/like_bench.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/test_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/tests/test_basic.rs -------------------------------------------------------------------------------- /tests/test_like.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TennyZhuang/const-currying-rs/HEAD/tests/test_like.rs --------------------------------------------------------------------------------