Acme::UNIVERSAL::cannot - Just so that Acme::LOLCat->cannot('has')


Acme-UNIVERSAL-cannot documentation Contained in the Acme-UNIVERSAL-cannot distribution.

Index


Code Index:

NAME

Top

Acme::UNIVERSAL::cannot - Just so that Acme::LOLCat->cannot('has')

SYNOPSIS

Top

    use Acme::UNIVERSAL::cannot;
    use Acme::LOLCat; # Should be fixed in 0.0.5 hopefully.

    Acme::LOLCat->cannot('has');
    Acme::LOLCat->can't('has');
    Acme::LOLCat->cant('has');

BLAME

Top

ElPenguin made me do it.

Nicholas Clark suggested ->can't()

AUTHOR

Top

Tomas Doran (t0m), <bobtfish at bobtfish.net>

BUGS

Top

Please report any bugs or feature requests to bug-acme-universal-cannot at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-UNIVERSAL-cannot. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Top


Acme-UNIVERSAL-cannot documentation Contained in the Acme-UNIVERSAL-cannot distribution.
package Acme::UNIVERSAL::cannot;

use warnings;
use strict;

our $VERSION = '0.01';

sub UNIVERSAL::cannot { ! UNIVERSAL::can(@_); }

sub UNIVERSAL::cant { goto \&UNIVERSAL::cannot; }

sub can::t { goto \&UNIVERSAL::cannot; }

1; # End of Acme::UNIVERSAL::cannot