├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml └── workflows │ ├── build.yaml │ └── release.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE-Apache ├── LICENSE-MIT ├── README.md ├── rustfmt.toml └── src ├── free ├── v1_40.rs ├── v1_43.rs ├── v1_47.rs ├── v1_48.rs ├── v1_51.rs ├── v1_53.rs ├── v1_54.rs ├── v1_59.rs └── v1_59 │ ├── available_parallelism.rs │ └── zip.rs ├── inherent ├── mod.rs ├── v1_37.rs ├── v1_38.rs ├── v1_40.rs ├── v1_41.rs ├── v1_42.rs ├── v1_43.rs ├── v1_44.rs ├── v1_45.rs ├── v1_46.rs ├── v1_47.rs ├── v1_48.rs ├── v1_49.rs ├── v1_49 │ └── sort.rs ├── v1_50.rs ├── v1_51.rs ├── v1_51 │ ├── slice.rs │ └── str.rs ├── v1_52.rs ├── v1_53.rs ├── v1_54.rs ├── v1_55.rs ├── v1_57.rs ├── v1_58.rs ├── v1_59.rs └── v1_60.rs ├── lib.rs └── pattern ├── memchr.rs └── mod.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-Apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/LICENSE-Apache -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/free/v1_40.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_40.rs -------------------------------------------------------------------------------- /src/free/v1_43.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_43.rs -------------------------------------------------------------------------------- /src/free/v1_47.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_47.rs -------------------------------------------------------------------------------- /src/free/v1_48.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_48.rs -------------------------------------------------------------------------------- /src/free/v1_51.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_51.rs -------------------------------------------------------------------------------- /src/free/v1_53.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_53.rs -------------------------------------------------------------------------------- /src/free/v1_54.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_54.rs -------------------------------------------------------------------------------- /src/free/v1_59.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_59.rs -------------------------------------------------------------------------------- /src/free/v1_59/available_parallelism.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_59/available_parallelism.rs -------------------------------------------------------------------------------- /src/free/v1_59/zip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/free/v1_59/zip.rs -------------------------------------------------------------------------------- /src/inherent/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/mod.rs -------------------------------------------------------------------------------- /src/inherent/v1_37.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_37.rs -------------------------------------------------------------------------------- /src/inherent/v1_38.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_38.rs -------------------------------------------------------------------------------- /src/inherent/v1_40.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_40.rs -------------------------------------------------------------------------------- /src/inherent/v1_41.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_41.rs -------------------------------------------------------------------------------- /src/inherent/v1_42.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_42.rs -------------------------------------------------------------------------------- /src/inherent/v1_43.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_43.rs -------------------------------------------------------------------------------- /src/inherent/v1_44.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_44.rs -------------------------------------------------------------------------------- /src/inherent/v1_45.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_45.rs -------------------------------------------------------------------------------- /src/inherent/v1_46.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_46.rs -------------------------------------------------------------------------------- /src/inherent/v1_47.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_47.rs -------------------------------------------------------------------------------- /src/inherent/v1_48.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_48.rs -------------------------------------------------------------------------------- /src/inherent/v1_49.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_49.rs -------------------------------------------------------------------------------- /src/inherent/v1_49/sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_49/sort.rs -------------------------------------------------------------------------------- /src/inherent/v1_50.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_50.rs -------------------------------------------------------------------------------- /src/inherent/v1_51.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_51.rs -------------------------------------------------------------------------------- /src/inherent/v1_51/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_51/slice.rs -------------------------------------------------------------------------------- /src/inherent/v1_51/str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_51/str.rs -------------------------------------------------------------------------------- /src/inherent/v1_52.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_52.rs -------------------------------------------------------------------------------- /src/inherent/v1_53.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_53.rs -------------------------------------------------------------------------------- /src/inherent/v1_54.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_54.rs -------------------------------------------------------------------------------- /src/inherent/v1_55.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_55.rs -------------------------------------------------------------------------------- /src/inherent/v1_57.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_57.rs -------------------------------------------------------------------------------- /src/inherent/v1_58.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_58.rs -------------------------------------------------------------------------------- /src/inherent/v1_59.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_59.rs -------------------------------------------------------------------------------- /src/inherent/v1_60.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/inherent/v1_60.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/pattern/memchr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/pattern/memchr.rs -------------------------------------------------------------------------------- /src/pattern/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhpratt/standback/HEAD/src/pattern/mod.rs --------------------------------------------------------------------------------