Help for this page

Select Code to Download


  1. or download this
    $navigation_map = {
        first_page       => {
    ...
            NEXT     => '',
        },
    };
    
  2. or download this
    $navigation_map = [qw(first_page second_page third_page fourth_page)];
    
  3. or download this
    package List::Navigator;
    
    ...
        }
        bless $data, $class;
    }
    
  4. or download this
    my $nav_list = [qw( first_page second_page third_page fourth_page )];
    
    my $navigation_map = List::Navigator->new( $nav_list );