├── .gitignore ├── README.md ├── composer.json ├── example.php ├── phpunit.xml ├── src └── Itertools │ └── Itertools.php └── tests └── Itertools └── ItertoolsTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolknote/itertools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolknote/itertools/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolknote/itertools/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolknote/itertools/HEAD/example.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolknote/itertools/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Itertools/Itertools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolknote/itertools/HEAD/src/Itertools/Itertools.php -------------------------------------------------------------------------------- /tests/Itertools/ItertoolsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolknote/itertools/HEAD/tests/Itertools/ItertoolsTest.php --------------------------------------------------------------------------------