Help for this page

Select Code to Download


  1. or download this
    sub not_exposed_reason {
        my ($self, $not_exposed_reason) = @_;
        $self->{_not_exposed_reason} = $not_exposed_reason // "No exposed 
    +reason";
    }
    
  2. or download this
    sub not_exposed_reason {
        my ($self, $not_exposed_reason) = @_;
        $self->{_not_exposed_reason} = defined $not_exposed_reason ? $not_
    +exposed_reason : "No exposed reason";
    }