- or download this
my @TABLE_ARRAY = values ( %{$self} );
- or download this
$self = {
"key1" => "val1",
"key2" => "val2",
"key3" => "val3",
};
- or download this
my @TABLE_ARRAY = values ( %{$self->{TABLE}} );
- or download this
$self = {
"TABLE" => {
...
"key3" => "val3",
}
};