no strict 'refs';
# Get all the CODE symbol table entries
my @functions =
- grep !/(?:has|with|around|before|after|blessed|extends|confess|excludes|meta|requires)/,
+ grep !/^(?:has|with|around|before|after|blessed|extends|confess|excludes|meta|requires)$/,
grep { defined &{"${name}::$_"} }
keys %{"${name}::"};
wantarray ? @functions : \@functions;