Help for this page

Select Code to Download


  1. or download this
        my $self = bless {}, $class;
    
        # Use an indexed hash to preserve the order.
        tie %{ $self->{sections} }, 'Tie::IxHash';
    
  2. or download this
        tie %{undef}, 'Tie::IxHash';
  3. or download this
        tie %{ $self->{sections}= {} }, 'Tie::IxHash';