Norma
view release on metacpan or search on metacpan
lib/Norma/ORM/Collection.pm view on Meta::CPAN
package Norma::ORM::Collection;
our $VERSION = "0.02";
use Moose;
has items => (is => 'ro', isa => 'ArrayRef', auto_deref => 1);
has total_count => (is => 'ro');
has query => (is => 'ro');
has class => (is => 'ro', required => 1);
has limit_offset => (is => 'ro');
has limit_count => (is => 'ro');
sub BUILD {
my ($self, $args) = @_;
( run in 0.975 second using v1.01-cache-2.11-cpan-5f2e87ce722 )