package Aspect::Pointcut::AndOp; use strict; use warnings; use Carp; our $VERSION = '0.21'; use base 'Aspect::Pointcut::BinOp'; sub binop { $_[1] && $_[2] } 1; __END__ =pod =head1 NAME Aspect::Pointcut::AndOp - Logical 'and' operation pointcut =head1 SYNOPSIS Aspect::Pointcut::AndOp->new; =head1 DESCRIPTION None yet. =head1 BUGS AND LIMITATIONS No bugs have been reported. Please report any bugs or feature requests through the web interface at L. =head1 INSTALLATION See perlmodinstall for information and options on installing Perl modules. =head1 AVAILABILITY The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit to find a CPAN site near you. Or see . =head1 AUTHORS Marcel GrEnauer, C<< >> Ran Eilam C<< >> =head1 COPYRIGHT AND LICENSE Copyright 2001 by Marcel GrEnauer This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut