Help for this page

Select Code to Download


  1. or download this
    sub channels_by_level { grep { $_[0]->level( $_[1] ) } $_[0]->channels
    + }
    
  2. or download this
    sub channels_by_level { 
        my $self  = shift;
        my $level = shift;
        return grep { $self->level( $level ) } $self->channels;
    }