Help for this page

Select Code to Download


  1. or download this
    sub find_stuff {
        my $self = shift;
        $self->{$_}->{'blablah'}
            and return $_ for keys %$self;
        return;
    }
    
  2. or download this
    sub find_stuff {
        my ($self, $k) = shift;
        while (defined($k = each %$self)) {
    ...
        1 while each %$self;
        $k
    }