3 Feb 20:39
Re: Coro
Вы не это искали? Вот пример из модуля https://metacpan.org/module/Combinator When you are tired of writing layered closures use AnyEvent::DBI; ... $dbh->exec("select ...", sub { ... $dbh->exec("select ...", sub { ... $dbh->exec("select ...", sub { ... $dbh->exec("select ...", sub { ... }); }); }); }); You can achieve that like this: use Combinator; use AnyEvent::DBI; ... {{com $dbh->exec("select ...", {{next}}); ... --ser(Continue reading)
RSS Feed