├── .gitignore ├── CITATION.cff ├── Dockerfile ├── LICENSE ├── README.md ├── benchmark.md ├── dist ├── type_enforced-0.0.1.tar.gz ├── type_enforced-0.0.10.tar.gz ├── type_enforced-0.0.11.tar.gz ├── type_enforced-0.0.12.tar.gz ├── type_enforced-0.0.13.tar.gz ├── type_enforced-0.0.14.tar.gz ├── type_enforced-0.0.15.tar.gz ├── type_enforced-0.0.16.tar.gz ├── type_enforced-0.0.2.tar.gz ├── type_enforced-0.0.3.tar.gz ├── type_enforced-0.0.4.tar.gz ├── type_enforced-0.0.5.tar.gz ├── type_enforced-0.0.6.tar.gz ├── type_enforced-0.0.7.tar.gz ├── type_enforced-0.0.8.tar.gz ├── type_enforced-0.0.9.tar.gz ├── type_enforced-1.0.0-py3-none-any.whl ├── type_enforced-1.0.0.tar.gz ├── type_enforced-1.1.0-py3-none-any.whl ├── type_enforced-1.1.0.tar.gz ├── type_enforced-1.1.1-py3-none-any.whl ├── type_enforced-1.1.1.tar.gz ├── type_enforced-1.10.0-py3-none-any.whl ├── type_enforced-1.10.0.tar.gz ├── type_enforced-1.10.1-py3-none-any.whl ├── type_enforced-1.10.1.tar.gz ├── type_enforced-1.10.2-py3-none-any.whl ├── type_enforced-1.10.2.tar.gz ├── type_enforced-1.2.0-py3-none-any.whl ├── type_enforced-1.2.0.tar.gz ├── type_enforced-1.3.0-py3-none-any.whl ├── type_enforced-1.3.0.tar.gz ├── type_enforced-1.4.0-py3-none-any.whl ├── type_enforced-1.4.0.tar.gz ├── type_enforced-1.5.0-py3-none-any.whl ├── type_enforced-1.5.0.tar.gz ├── type_enforced-1.6.0-py3-none-any.whl ├── type_enforced-1.6.0.tar.gz ├── type_enforced-1.7.0-py3-none-any.whl ├── type_enforced-1.7.0.tar.gz ├── type_enforced-1.8.0-py3-none-any.whl ├── type_enforced-1.8.0.tar.gz ├── type_enforced-1.8.1-py3-none-any.whl ├── type_enforced-1.8.1.tar.gz ├── type_enforced-1.9.0-py3-none-any.whl ├── type_enforced-1.9.0.tar.gz ├── type_enforced-2.0.0-py3-none-any.whl ├── type_enforced-2.0.0.tar.gz ├── type_enforced-2.1.0-py3-none-any.whl ├── type_enforced-2.1.0.tar.gz ├── type_enforced-2.2.0-py3-none-any.whl ├── type_enforced-2.2.0.tar.gz ├── type_enforced-2.2.1-py3-none-any.whl ├── type_enforced-2.2.1.tar.gz ├── type_enforced-2.2.2-py3-none-any.whl ├── type_enforced-2.2.2.tar.gz ├── type_enforced-2.2.3-py3-none-any.whl ├── type_enforced-2.2.3.tar.gz ├── type_enforced-2.3.0-py3-none-any.whl └── type_enforced-2.3.0.tar.gz ├── doc_template └── module.html.jinja2 ├── docs ├── 0.0.16 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ └── enforcer.html ├── 1.1.1 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ └── enforcer.html ├── 1.10.2 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 1.2.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ └── enforcer.html ├── 1.3.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 1.4.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 1.5.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 1.6.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 1.7.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 1.8.1 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 1.9.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 2.0.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 2.1.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 2.2.3 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── 2.3.0 │ ├── index.html │ ├── search.js │ ├── type_enforced.html │ └── type_enforced │ │ ├── enforcer.html │ │ └── utils.html ├── index.html ├── search.js ├── type_enforced.html └── type_enforced │ ├── enforcer.html │ └── utils.html ├── joss_paper.pdf ├── publish.sh ├── pyproject.toml ├── requirements.txt ├── run.sh ├── setup.cfg ├── test ├── benchmark.py ├── test_class_01.py ├── test_class_02.py ├── test_class_03.py ├── test_class_04.py ├── test_class_05.py ├── test_class_06.py ├── test_class_07.py ├── test_class_08.py ├── test_class_09.py ├── test_class_10.py ├── test_class_11.py ├── test_class_12.py ├── test_class_12_utils │ ├── __init__.py │ ├── bar.py │ └── baz.py ├── test_class_13.py ├── test_class_14.py ├── test_class_15.py ├── test_fn_01.py ├── test_fn_02.py ├── test_fn_03.py ├── test_fn_04.py ├── test_fn_05.py ├── test_fn_06.py ├── test_fn_07.py ├── test_fn_08.py ├── test_fn_09.py ├── test_fn_10.py ├── test_fn_11.py ├── test_fn_12.py ├── test_fn_13.py ├── test_fn_14.py ├── test_fn_15.py ├── test_fn_16.py ├── test_fn_17.py ├── test_fn_18.py ├── test_fn_19.py ├── test_fn_20.py ├── test_fn_21.py └── test_fn_22.py ├── type_enforced ├── __init__.py ├── enforcer.py └── utils.py └── utils ├── docs.sh ├── prettify.sh └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/benchmark.md -------------------------------------------------------------------------------- /dist/type_enforced-0.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.1.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.10.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.10.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.11.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.11.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.12.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.12.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.13.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.13.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.14.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.14.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.15.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.15.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.16.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.16.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.2.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.3.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.4.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.5.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.6.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.7.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.8.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-0.0.9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-0.0.9.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.0.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.1.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.1.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.1.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.1.1.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.10.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.10.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.10.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.10.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.10.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.10.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.10.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.10.1.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.10.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.10.2-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.10.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.10.2.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.2.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.2.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.3.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.3.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.3.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.4.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.4.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.4.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.4.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.5.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.5.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.5.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.5.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.6.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.6.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.6.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.6.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.7.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.7.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.7.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.7.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.8.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.8.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.8.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.8.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.8.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.8.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.8.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.8.1.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-1.9.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.9.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-1.9.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-1.9.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-2.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-2.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.0.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-2.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-2.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.1.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-2.2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-2.2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.0.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-2.2.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-2.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.1.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-2.2.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.2-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-2.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.2.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-2.2.3-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.3-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-2.2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.2.3.tar.gz -------------------------------------------------------------------------------- /dist/type_enforced-2.3.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.3.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/type_enforced-2.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/dist/type_enforced-2.3.0.tar.gz -------------------------------------------------------------------------------- /doc_template/module.html.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/doc_template/module.html.jinja2 -------------------------------------------------------------------------------- /docs/0.0.16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/0.0.16/index.html -------------------------------------------------------------------------------- /docs/0.0.16/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/0.0.16/search.js -------------------------------------------------------------------------------- /docs/0.0.16/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/0.0.16/type_enforced.html -------------------------------------------------------------------------------- /docs/0.0.16/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/0.0.16/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.1.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.1.1/index.html -------------------------------------------------------------------------------- /docs/1.1.1/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.1.1/search.js -------------------------------------------------------------------------------- /docs/1.1.1/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.1.1/type_enforced.html -------------------------------------------------------------------------------- /docs/1.1.1/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.1.1/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.10.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.10.2/index.html -------------------------------------------------------------------------------- /docs/1.10.2/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.10.2/search.js -------------------------------------------------------------------------------- /docs/1.10.2/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.10.2/type_enforced.html -------------------------------------------------------------------------------- /docs/1.10.2/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.10.2/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.10.2/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.10.2/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/1.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.2.0/index.html -------------------------------------------------------------------------------- /docs/1.2.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.2.0/search.js -------------------------------------------------------------------------------- /docs/1.2.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.2.0/type_enforced.html -------------------------------------------------------------------------------- /docs/1.2.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.2.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.3.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.3.0/index.html -------------------------------------------------------------------------------- /docs/1.3.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.3.0/search.js -------------------------------------------------------------------------------- /docs/1.3.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.3.0/type_enforced.html -------------------------------------------------------------------------------- /docs/1.3.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.3.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.3.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.3.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/1.4.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.4.0/index.html -------------------------------------------------------------------------------- /docs/1.4.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.4.0/search.js -------------------------------------------------------------------------------- /docs/1.4.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.4.0/type_enforced.html -------------------------------------------------------------------------------- /docs/1.4.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.4.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.4.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.4.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/1.5.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.5.0/index.html -------------------------------------------------------------------------------- /docs/1.5.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.5.0/search.js -------------------------------------------------------------------------------- /docs/1.5.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.5.0/type_enforced.html -------------------------------------------------------------------------------- /docs/1.5.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.5.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.5.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.5.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/1.6.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.6.0/index.html -------------------------------------------------------------------------------- /docs/1.6.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.6.0/search.js -------------------------------------------------------------------------------- /docs/1.6.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.6.0/type_enforced.html -------------------------------------------------------------------------------- /docs/1.6.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.6.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.6.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.6.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/1.7.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.7.0/index.html -------------------------------------------------------------------------------- /docs/1.7.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.7.0/search.js -------------------------------------------------------------------------------- /docs/1.7.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.7.0/type_enforced.html -------------------------------------------------------------------------------- /docs/1.7.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.7.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.7.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.7.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/1.8.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.8.1/index.html -------------------------------------------------------------------------------- /docs/1.8.1/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.8.1/search.js -------------------------------------------------------------------------------- /docs/1.8.1/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.8.1/type_enforced.html -------------------------------------------------------------------------------- /docs/1.8.1/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.8.1/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.8.1/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.8.1/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/1.9.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.9.0/index.html -------------------------------------------------------------------------------- /docs/1.9.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.9.0/search.js -------------------------------------------------------------------------------- /docs/1.9.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.9.0/type_enforced.html -------------------------------------------------------------------------------- /docs/1.9.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.9.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/1.9.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/1.9.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/2.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.0.0/index.html -------------------------------------------------------------------------------- /docs/2.0.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.0.0/search.js -------------------------------------------------------------------------------- /docs/2.0.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.0.0/type_enforced.html -------------------------------------------------------------------------------- /docs/2.0.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.0.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/2.0.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.0.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/2.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.1.0/index.html -------------------------------------------------------------------------------- /docs/2.1.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.1.0/search.js -------------------------------------------------------------------------------- /docs/2.1.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.1.0/type_enforced.html -------------------------------------------------------------------------------- /docs/2.1.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.1.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/2.1.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.1.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/2.2.3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.2.3/index.html -------------------------------------------------------------------------------- /docs/2.2.3/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.2.3/search.js -------------------------------------------------------------------------------- /docs/2.2.3/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.2.3/type_enforced.html -------------------------------------------------------------------------------- /docs/2.2.3/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.2.3/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/2.2.3/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.2.3/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/2.3.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.3.0/index.html -------------------------------------------------------------------------------- /docs/2.3.0/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.3.0/search.js -------------------------------------------------------------------------------- /docs/2.3.0/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.3.0/type_enforced.html -------------------------------------------------------------------------------- /docs/2.3.0/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.3.0/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/2.3.0/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/2.3.0/type_enforced/utils.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/search.js -------------------------------------------------------------------------------- /docs/type_enforced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/type_enforced.html -------------------------------------------------------------------------------- /docs/type_enforced/enforcer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/type_enforced/enforcer.html -------------------------------------------------------------------------------- /docs/type_enforced/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/docs/type_enforced/utils.html -------------------------------------------------------------------------------- /joss_paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/joss_paper.pdf -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/publish.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/run.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/setup.cfg -------------------------------------------------------------------------------- /test/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/benchmark.py -------------------------------------------------------------------------------- /test/test_class_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_01.py -------------------------------------------------------------------------------- /test/test_class_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_02.py -------------------------------------------------------------------------------- /test/test_class_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_03.py -------------------------------------------------------------------------------- /test/test_class_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_04.py -------------------------------------------------------------------------------- /test/test_class_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_05.py -------------------------------------------------------------------------------- /test/test_class_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_06.py -------------------------------------------------------------------------------- /test/test_class_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_07.py -------------------------------------------------------------------------------- /test/test_class_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_08.py -------------------------------------------------------------------------------- /test/test_class_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_09.py -------------------------------------------------------------------------------- /test/test_class_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_10.py -------------------------------------------------------------------------------- /test/test_class_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_11.py -------------------------------------------------------------------------------- /test/test_class_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_12.py -------------------------------------------------------------------------------- /test/test_class_12_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_class_12_utils/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_12_utils/bar.py -------------------------------------------------------------------------------- /test/test_class_12_utils/baz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_12_utils/baz.py -------------------------------------------------------------------------------- /test/test_class_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_13.py -------------------------------------------------------------------------------- /test/test_class_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_14.py -------------------------------------------------------------------------------- /test/test_class_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_class_15.py -------------------------------------------------------------------------------- /test/test_fn_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_01.py -------------------------------------------------------------------------------- /test/test_fn_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_02.py -------------------------------------------------------------------------------- /test/test_fn_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_03.py -------------------------------------------------------------------------------- /test/test_fn_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_04.py -------------------------------------------------------------------------------- /test/test_fn_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_05.py -------------------------------------------------------------------------------- /test/test_fn_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_06.py -------------------------------------------------------------------------------- /test/test_fn_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_07.py -------------------------------------------------------------------------------- /test/test_fn_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_08.py -------------------------------------------------------------------------------- /test/test_fn_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_09.py -------------------------------------------------------------------------------- /test/test_fn_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_10.py -------------------------------------------------------------------------------- /test/test_fn_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_11.py -------------------------------------------------------------------------------- /test/test_fn_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_12.py -------------------------------------------------------------------------------- /test/test_fn_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_13.py -------------------------------------------------------------------------------- /test/test_fn_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_14.py -------------------------------------------------------------------------------- /test/test_fn_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_15.py -------------------------------------------------------------------------------- /test/test_fn_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_16.py -------------------------------------------------------------------------------- /test/test_fn_17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_17.py -------------------------------------------------------------------------------- /test/test_fn_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_18.py -------------------------------------------------------------------------------- /test/test_fn_19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_19.py -------------------------------------------------------------------------------- /test/test_fn_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_20.py -------------------------------------------------------------------------------- /test/test_fn_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_21.py -------------------------------------------------------------------------------- /test/test_fn_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/test/test_fn_22.py -------------------------------------------------------------------------------- /type_enforced/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/type_enforced/__init__.py -------------------------------------------------------------------------------- /type_enforced/enforcer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/type_enforced/enforcer.py -------------------------------------------------------------------------------- /type_enforced/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/type_enforced/utils.py -------------------------------------------------------------------------------- /utils/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/utils/docs.sh -------------------------------------------------------------------------------- /utils/prettify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/utils/prettify.sh -------------------------------------------------------------------------------- /utils/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connor-makowski/type_enforced/HEAD/utils/test.sh --------------------------------------------------------------------------------