Class-IntrospectionMethods
    
    
  
  
  
view release on metacpan or search on metacpan
=cut
sub all_catalog
  {
    my ($self) = @_ ;
    return sort keys %{$self->{catalog_list}} ;
  }
#internal
sub update_catalog_list
  {
    my $self = shift ;
    # reset and update catalog lists (which is somewhat different from rebuild)
    delete $self->{catalog} ;
    foreach my $slot (sort keys %{$self->{slot_list}} ) 
      {
        map{ push @{$self->{catalog_list}{$_}}, $slot ;} 
          @{$self->{slot_list}{$slot}} ;
      }
    
  
  
  
( run in 0.270 second using v1.01-cache-2.11-cpan-0a6323c29d9 )