├── .gitignore ├── Itertools.lean ├── Itertools ├── Collect.lean ├── FilterMap.lean ├── Generate.lean ├── StaticRange.lean └── Stop.lean ├── LICENSE ├── README.md ├── lake-manifest.json ├── lakefile.lean ├── lean-toolchain └── test ├── basic.expected.out └── basic.lean /.gitignore: -------------------------------------------------------------------------------- 1 | /.lake 2 | *.produced.out 3 | -------------------------------------------------------------------------------- /Itertools.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/Itertools.lean -------------------------------------------------------------------------------- /Itertools/Collect.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/Itertools/Collect.lean -------------------------------------------------------------------------------- /Itertools/FilterMap.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/Itertools/FilterMap.lean -------------------------------------------------------------------------------- /Itertools/Generate.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/Itertools/Generate.lean -------------------------------------------------------------------------------- /Itertools/StaticRange.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/Itertools/StaticRange.lean -------------------------------------------------------------------------------- /Itertools/Stop.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/Itertools/Stop.lean -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/README.md -------------------------------------------------------------------------------- /lake-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/lake-manifest.json -------------------------------------------------------------------------------- /lakefile.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/lakefile.lean -------------------------------------------------------------------------------- /lean-toolchain: -------------------------------------------------------------------------------- 1 | leanprover/lean4:4.3.0 2 | -------------------------------------------------------------------------------- /test/basic.expected.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/test/basic.expected.out -------------------------------------------------------------------------------- /test/basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tydeu/lean4-itertools/HEAD/test/basic.lean --------------------------------------------------------------------------------