├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── TODO.md ├── codecov.yml ├── dub.sdl ├── dub.selections.json ├── reggaefile.d ├── source └── tardy │ ├── allocators.d │ ├── from.d │ ├── package.d │ ├── poly.d │ └── refraction.d └── tests ├── main.d ├── modules ├── types.d └── ufcs │ ├── pointer │ ├── stringify.d │ └── transform.d │ ├── ref_ │ └── transform.d │ ├── template_.d │ └── value │ └── transform.d └── ut ├── issues.d ├── memory ├── allocators.d ├── classes.d ├── structs.d └── values.d ├── package.d ├── polymorphic.d ├── refraction ├── method.d └── vtable.d └── value.d /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/TODO.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "tests" 3 | -------------------------------------------------------------------------------- /dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/dub.sdl -------------------------------------------------------------------------------- /dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/dub.selections.json -------------------------------------------------------------------------------- /reggaefile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/reggaefile.d -------------------------------------------------------------------------------- /source/tardy/allocators.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/source/tardy/allocators.d -------------------------------------------------------------------------------- /source/tardy/from.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/source/tardy/from.d -------------------------------------------------------------------------------- /source/tardy/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/source/tardy/package.d -------------------------------------------------------------------------------- /source/tardy/poly.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/source/tardy/poly.d -------------------------------------------------------------------------------- /source/tardy/refraction.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/source/tardy/refraction.d -------------------------------------------------------------------------------- /tests/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/main.d -------------------------------------------------------------------------------- /tests/modules/types.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/modules/types.d -------------------------------------------------------------------------------- /tests/modules/ufcs/pointer/stringify.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/modules/ufcs/pointer/stringify.d -------------------------------------------------------------------------------- /tests/modules/ufcs/pointer/transform.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/modules/ufcs/pointer/transform.d -------------------------------------------------------------------------------- /tests/modules/ufcs/ref_/transform.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/modules/ufcs/ref_/transform.d -------------------------------------------------------------------------------- /tests/modules/ufcs/template_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/modules/ufcs/template_.d -------------------------------------------------------------------------------- /tests/modules/ufcs/value/transform.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/modules/ufcs/value/transform.d -------------------------------------------------------------------------------- /tests/ut/issues.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/issues.d -------------------------------------------------------------------------------- /tests/ut/memory/allocators.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/memory/allocators.d -------------------------------------------------------------------------------- /tests/ut/memory/classes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/memory/classes.d -------------------------------------------------------------------------------- /tests/ut/memory/structs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/memory/structs.d -------------------------------------------------------------------------------- /tests/ut/memory/values.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/memory/values.d -------------------------------------------------------------------------------- /tests/ut/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/package.d -------------------------------------------------------------------------------- /tests/ut/polymorphic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/polymorphic.d -------------------------------------------------------------------------------- /tests/ut/refraction/method.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/refraction/method.d -------------------------------------------------------------------------------- /tests/ut/refraction/vtable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/refraction/vtable.d -------------------------------------------------------------------------------- /tests/ut/value.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilaneves/tardy/HEAD/tests/ut/value.d --------------------------------------------------------------------------------