line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Helper::ResultSet::Shortcut::Limit; |
2
|
|
|
|
|
|
|
$DBIx::Class::Helper::ResultSet::Shortcut::Limit::VERSION = '2.035000'; |
3
|
57
|
|
|
57
|
|
26344
|
use strict; |
|
57
|
|
|
|
|
153
|
|
|
57
|
|
|
|
|
1613
|
|
4
|
57
|
|
|
57
|
|
291
|
use warnings; |
|
57
|
|
|
|
|
134
|
|
|
57
|
|
|
|
|
1594
|
|
5
|
|
|
|
|
|
|
|
6
|
57
|
|
|
57
|
|
304
|
use parent 'DBIx::Class::Helper::ResultSet::Shortcut::Rows', 'DBIx::Class::ResultSet'; |
|
57
|
|
|
|
|
160
|
|
|
57
|
|
|
|
|
287
|
|
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
0
|
403
|
sub limit { return shift->rows(@_) } |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
__END__ |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=pod |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
DBIx::Class::Helper::ResultSet::Shortcut::Limit |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 AUTHOR |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com> |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This software is copyright (c) 2020 by Arthur Axel "fREW" Schmidt. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
29
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |