callable
$cb)Apply a callback
to each row of this rowset.
callable
$cb#callback
as function(pq\Gateway\Row $row#, pq\Gateway\Rowset $rowset#).
<?php
use pq\Gateway\Table;
$table = new Table("account");
$table->find()->apply(function($row) {
printf("Hello %s!\n", $row->name);
});
?>