1package DBIx::Class::Helper::ResultSet::Shortcut::Rows;
2$DBIx::Class::Helper::ResultSet::Shortcut::Rows::VERSION = '2.036000';
3use strict;
4use warnings;
5
6use parent 'DBIx::Class::ResultSet';
7
8sub rows { shift->search(undef, { rows => shift }) }
9
101;
11
12__END__
13
14=pod
15
16=head1 NAME
17
18DBIx::Class::Helper::ResultSet::Shortcut::Rows
19
20=head1 AUTHOR
21
22Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
23
24=head1 COPYRIGHT AND LICENSE
25
26This software is copyright (c) 2020 by Arthur Axel "fREW" Schmidt.
27
28This is free software; you can redistribute it and/or modify it under
29the same terms as the Perl 5 programming language system itself.
30
31=cut
32