├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── docs_improvement.md │ ├── feature_request.md │ └── performance_regression.md ├── dependabot.yml ├── example-run │ └── all_tuples.ron ├── linters │ └── .markdown-lint.yml ├── pull_request_template.md └── workflows │ ├── action-on-PR-labeled.yml │ ├── ci-comment-failures.yml │ ├── ci.yml │ ├── dependencies.yml │ ├── post-release.yml │ ├── release.yml │ ├── validation-jobs.yml │ ├── weekly.yml │ └── welcome.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASES.md ├── benches ├── Cargo.toml ├── README.md └── benches │ └── dummy.rs ├── deny.toml ├── documentation ├── debugging.md └── linters.md ├── errors ├── Cargo.toml ├── README.md ├── V0001.md └── src │ └── lib.rs ├── examples └── demonstrations │ └── all_tuples.rs ├── rustfmt.toml ├── src └── lib.rs ├── tools ├── compile_fail_utils │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ └── lib.rs │ └── tests │ │ ├── example.rs │ │ └── example_tests │ │ ├── basic_test.rs │ │ ├── basic_test.stderr │ │ ├── import.rs │ │ ├── import.stderr │ │ ├── pass_test.rs │ │ └── pass_test.stderr └── publish.sh └── typos.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://bevyengine.org/donate/ 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/ISSUE_TEMPLATE/docs_improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance_regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/ISSUE_TEMPLATE/performance_regression.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/example-run/all_tuples.ron: -------------------------------------------------------------------------------- 1 | ( 2 | ) 3 | -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/action-on-PR-labeled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/action-on-PR-labeled.yml -------------------------------------------------------------------------------- /.github/workflows/ci-comment-failures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/ci-comment-failures.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/post-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/post-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validation-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/validation-jobs.yml -------------------------------------------------------------------------------- /.github/workflows/weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/weekly.yml -------------------------------------------------------------------------------- /.github/workflows/welcome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.github/workflows/welcome.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/RELEASES.md -------------------------------------------------------------------------------- /benches/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/benches/Cargo.toml -------------------------------------------------------------------------------- /benches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/benches/README.md -------------------------------------------------------------------------------- /benches/benches/dummy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/benches/benches/dummy.rs -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/deny.toml -------------------------------------------------------------------------------- /documentation/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/documentation/debugging.md -------------------------------------------------------------------------------- /documentation/linters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/documentation/linters.md -------------------------------------------------------------------------------- /errors/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/errors/Cargo.toml -------------------------------------------------------------------------------- /errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/errors/README.md -------------------------------------------------------------------------------- /errors/V0001.md: -------------------------------------------------------------------------------- 1 | # V0001 2 | 3 | Placeholder 4 | -------------------------------------------------------------------------------- /errors/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/errors/src/lib.rs -------------------------------------------------------------------------------- /examples/demonstrations/all_tuples.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/examples/demonstrations/all_tuples.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tools/compile_fail_utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/Cargo.toml -------------------------------------------------------------------------------- /tools/compile_fail_utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/README.md -------------------------------------------------------------------------------- /tools/compile_fail_utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/src/lib.rs -------------------------------------------------------------------------------- /tools/compile_fail_utils/tests/example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/tests/example.rs -------------------------------------------------------------------------------- /tools/compile_fail_utils/tests/example_tests/basic_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/tests/example_tests/basic_test.rs -------------------------------------------------------------------------------- /tools/compile_fail_utils/tests/example_tests/basic_test.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/tests/example_tests/basic_test.stderr -------------------------------------------------------------------------------- /tools/compile_fail_utils/tests/example_tests/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/tests/example_tests/import.rs -------------------------------------------------------------------------------- /tools/compile_fail_utils/tests/example_tests/import.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/tests/example_tests/import.stderr -------------------------------------------------------------------------------- /tools/compile_fail_utils/tests/example_tests/pass_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/tests/example_tests/pass_test.rs -------------------------------------------------------------------------------- /tools/compile_fail_utils/tests/example_tests/pass_test.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/compile_fail_utils/tests/example_tests/pass_test.stderr -------------------------------------------------------------------------------- /tools/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/tools/publish.sh -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevyengine/variadics_please/HEAD/typos.toml --------------------------------------------------------------------------------