├── .github └── ISSUE_TEMPLATE.md ├── README.md ├── bibliotecas_externas.md ├── funclib └── funclib.py ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── referencias.md ├── roteiros ├── 00_introducao.md ├── 01_funcoes.md ├── 02_iteraveis_iteradores.md ├── 03_consumindo_iteraveis.md ├── 04_funcoes_reducao_mapeamento.md ├── 05_hofs.md ├── 06_funcoes_geradoras_e_hofs_p2.md ├── 07_construindo_nossa_lib.md ├── 08_closures_1_escopo.md ├── 09_closures_2.md ├── 10_decoradores.md └── README.md ├── sumario.md └── tools └── gen_index.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/README.md -------------------------------------------------------------------------------- /bibliotecas_externas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/bibliotecas_externas.md -------------------------------------------------------------------------------- /funclib/funclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/funclib/funclib.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/pyproject.toml -------------------------------------------------------------------------------- /referencias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/referencias.md -------------------------------------------------------------------------------- /roteiros/00_introducao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/00_introducao.md -------------------------------------------------------------------------------- /roteiros/01_funcoes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/01_funcoes.md -------------------------------------------------------------------------------- /roteiros/02_iteraveis_iteradores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/02_iteraveis_iteradores.md -------------------------------------------------------------------------------- /roteiros/03_consumindo_iteraveis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/03_consumindo_iteraveis.md -------------------------------------------------------------------------------- /roteiros/04_funcoes_reducao_mapeamento.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/04_funcoes_reducao_mapeamento.md -------------------------------------------------------------------------------- /roteiros/05_hofs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/05_hofs.md -------------------------------------------------------------------------------- /roteiros/06_funcoes_geradoras_e_hofs_p2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/06_funcoes_geradoras_e_hofs_p2.md -------------------------------------------------------------------------------- /roteiros/07_construindo_nossa_lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/07_construindo_nossa_lib.md -------------------------------------------------------------------------------- /roteiros/08_closures_1_escopo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/08_closures_1_escopo.md -------------------------------------------------------------------------------- /roteiros/09_closures_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/09_closures_2.md -------------------------------------------------------------------------------- /roteiros/10_decoradores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/10_decoradores.md -------------------------------------------------------------------------------- /roteiros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/roteiros/README.md -------------------------------------------------------------------------------- /sumario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/sumario.md -------------------------------------------------------------------------------- /tools/gen_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dunossauro/python-funcional/HEAD/tools/gen_index.py --------------------------------------------------------------------------------