sys::re
# #############################################################
# ### Generated by GenerateVarMap.PL.
# ###
# ### Please edit the master and *not* this file.
# ### Date of render: Fri Mar 7 13:15:44 2008
##############################################################
package sys::re;
use strict;
use warnings;
use version;
our $VERSION = qv('0.2');
use Carp 'confess';
use Scalar::Util 'blessed';
use Class::Dot2;
use sys::re::match;
{
has "match" => (isa => "sys::re::match");
sub match {
return defined $_[0] && blessed $_[0]
? $_[0]->__getattr__("match")
: sys::re::match->new();
}
sub matches {
return \%+; # HASH
}
}
1;
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# fill-column: 78
# End:
# vim: expandtab tabstop=4 shiftwidth=4 shiftround
__END__