callable
$cb)Filter the rows a copy of the rowset should contain.
<?php
use pq\Gateway\Table;
$table = new Table("account");
$table->find()
->apply(function($row) {
// ...
})->filter(function ($row) {
return $row->isDirty();
})->update();
?>