Newer Older
26 lines | 0.436kb
added Next version
Yuki Kimoto authored on 2011-11-16
1
package DBIx::Custom::Next::NotExists;
2

            
3
use strict;
4
use warnings;
5

            
6
my $not_exists = bless {}, 'DBIx::Custom::Next::NotExists';
7

            
8
sub singleton { $not_exists }
9

            
10
=head1 NAME
11

            
12
DBIx::Custom::Next::NotExists
13

            
14
=head1 SYNOPSYS
15

            
16
    $not_exists = DBIx::Custom::Next::NotExists->singleton;
17

            
18
=head1 METHODS
19

            
20
=head2 C<singleton>
21

            
22
    $not_exists = DBIx::Custom::Next::NotExists->singleton;
23

            
24
L<DBIx::Custom::Next::NotExists> singleton object.
25

            
26
=cut