├── .github └── workflows │ └── CI.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── hex.rs ├── rustfmt.toml ├── src ├── arr.rs ├── compat │ ├── generic_array_0_14.rs │ ├── hybrid_array_0_4.rs │ └── mod.rs ├── ext_impls │ ├── impl_alloc.rs │ ├── impl_arbitrary.rs │ ├── impl_as_slice.rs │ ├── impl_bitvec.rs │ ├── impl_bytemuck.rs │ ├── impl_const_default.rs │ ├── impl_serde.rs │ ├── impl_subtle.rs │ ├── impl_zeroize.rs │ └── mod.rs ├── functional.rs ├── hex.rs ├── impls.rs ├── internal.rs ├── iter.rs ├── lib.rs └── sequence.rs └── tests ├── arr.rs ├── compat-0_14.rs ├── generics.rs ├── hex.rs ├── import_name.rs ├── iter.rs ├── miri_stress.rs └── mod.rs /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/README.md -------------------------------------------------------------------------------- /benches/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/benches/hex.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/arr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/arr.rs -------------------------------------------------------------------------------- /src/compat/generic_array_0_14.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/compat/generic_array_0_14.rs -------------------------------------------------------------------------------- /src/compat/hybrid_array_0_4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/compat/hybrid_array_0_4.rs -------------------------------------------------------------------------------- /src/compat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/compat/mod.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_alloc.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_arbitrary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_arbitrary.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_as_slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_as_slice.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_bitvec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_bitvec.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_bytemuck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_bytemuck.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_const_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_const_default.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_serde.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_subtle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_subtle.rs -------------------------------------------------------------------------------- /src/ext_impls/impl_zeroize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/impl_zeroize.rs -------------------------------------------------------------------------------- /src/ext_impls/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/ext_impls/mod.rs -------------------------------------------------------------------------------- /src/functional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/functional.rs -------------------------------------------------------------------------------- /src/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/hex.rs -------------------------------------------------------------------------------- /src/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/impls.rs -------------------------------------------------------------------------------- /src/internal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/internal.rs -------------------------------------------------------------------------------- /src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/iter.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/src/sequence.rs -------------------------------------------------------------------------------- /tests/arr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/arr.rs -------------------------------------------------------------------------------- /tests/compat-0_14.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/compat-0_14.rs -------------------------------------------------------------------------------- /tests/generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/generics.rs -------------------------------------------------------------------------------- /tests/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/hex.rs -------------------------------------------------------------------------------- /tests/import_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/import_name.rs -------------------------------------------------------------------------------- /tests/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/iter.rs -------------------------------------------------------------------------------- /tests/miri_stress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/miri_stress.rs -------------------------------------------------------------------------------- /tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fizyk20/generic-array/HEAD/tests/mod.rs --------------------------------------------------------------------------------