NAME
Pod::Coverage::Overloader - subclass of Pod::Coverage that discards overloading functions
SYNOPSIS
# all in one invocation
use Pod::Coverage::Overloader package => 'Fishy';
# straight OO
use Pod::Coverage::Overloader;
my $pc = new Pod::Coverage::Overloader package => 'Pod::Coverage';
print "We rock!" if $pc->coverage == 1;
DESCRIPTION
This module extends Pod::Coverage to exclude symbols that have been created for use in overloading. It scans the %$package::OVERLOAD hash in addition to the %$package:: stash, this is likely to be fragile should the implemtation of the overload prgama changes.
If you want full documentation we suggest you check the Pod::Coverage documentation.
SEE ALSO
AUTHORS
Copyright (c) 2001 Richard Clamp, Micheal Stevens. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.