Help for this page

Select Code to Download


  1. or download this
    use strict;
    use UNIVERSAL 'isa';
    ...
      }
      return @results;
    }
    
  2. or download this
    my @loggers = deep_grep( sub { isa( $_, 'Log' ) }, $target );
    
    my @loggers = deep_grep { isa( $_, 'Log' ) } $target;