├── .poggit.yml ├── LICENSE ├── README.md ├── composer.json ├── src └── muqsit │ └── asynciterator │ ├── AsyncForeachTask.php │ ├── AsyncIterator.php │ ├── handler │ ├── AsyncForeachHandler.php │ ├── AsyncForeachHandlerTimings.php │ ├── AsyncForeachResult.php │ └── SimpleAsyncForeachHandler.php │ └── util │ ├── EmptyTimedClosure.php │ └── KeyValueTimedClosure.php └── virion.yml /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/composer.json -------------------------------------------------------------------------------- /src/muqsit/asynciterator/AsyncForeachTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/AsyncForeachTask.php -------------------------------------------------------------------------------- /src/muqsit/asynciterator/AsyncIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/AsyncIterator.php -------------------------------------------------------------------------------- /src/muqsit/asynciterator/handler/AsyncForeachHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/handler/AsyncForeachHandler.php -------------------------------------------------------------------------------- /src/muqsit/asynciterator/handler/AsyncForeachHandlerTimings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/handler/AsyncForeachHandlerTimings.php -------------------------------------------------------------------------------- /src/muqsit/asynciterator/handler/AsyncForeachResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/handler/AsyncForeachResult.php -------------------------------------------------------------------------------- /src/muqsit/asynciterator/handler/SimpleAsyncForeachHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/handler/SimpleAsyncForeachHandler.php -------------------------------------------------------------------------------- /src/muqsit/asynciterator/util/EmptyTimedClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/util/EmptyTimedClosure.php -------------------------------------------------------------------------------- /src/muqsit/asynciterator/util/KeyValueTimedClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/src/muqsit/asynciterator/util/KeyValueTimedClosure.php -------------------------------------------------------------------------------- /virion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muqsit/AsyncIterator/HEAD/virion.yml --------------------------------------------------------------------------------