i'm using redbeanphp like this
$r = R::find('chat', 'room_id = ? AND time > ? ORDER BY time ASC', array($w->id, $_POST['latest_timestamp']));
Now i a have a list of bean objects inside $r so is there any way to access rows without convert it to array?
(i know i can't use it with foreach !)