Help for this page

Select Code to Download


  1. or download this
    defined $self->[ARRAY][$index] ? $self->[ARRAY][$index] : undef;
    
  2. or download this
    if (defined $self->[ARRAY][$index]) {
        return $self->[ARRAY][$index];
    ...
    else {
        return undef;
    }