You could look for either keys ending in '::', which would indicate that it has other packages, or all the values are symbol refs.
- Of course, even here it would be hard to tell a stash from a hash that just storing symbols (for whatever reason). I was poking around with
B::svref_2object, but even symbols from a stash stored in a regular hash would return something for $sym->can( 'STASH' ).
I think the thing you might do is descend through the symbol table and see if a stash points at the exact same memory location.
Kind of like this:
use Scalar::Util qw<refaddr>;
my %seen;
sub _descend_symtable {
$calls++;
my ( $cand, $stash_name ) = @_;
my $stash = do { no strict 'refs'; \%{ $stash_name }; };
return if $seen{ refaddr( $stash ) }++;
return $stash_name if $cand == $stash;
my $result;
foreach my $s ( grep { m/::$/ } keys %$stash ) {
$result = _descend_symtable( $cand, "$stash_name$s" )
and return $result;
}
return;
}
sub find_in_symtable {
my $needle = shift;
%seen = ();
return _descend_symtable( $needle, 'main::' );
}
The performance wasn't terrible.