Help for this page

Select Code to Download


  1. or download this
    my @values = map { foo( $_) } keys %properties;
  2. or download this
    my @values = map {
        my $key = $_;
        map {
            bar( $key, $_)
        } keys %{$properties{$_}}
    } keys %properties;
    
  3. or download this
    my @values = map {
        my $key = $_;
        map {
            [ $key, $_, $properties{$key}{$_}{'value'} ]
        } keys %{$properties{$_}}
    } keys %properties;
    
  4. or download this
    my @values = map {
        my $key = $_;
        map {
            [$key, $_, $properties{$key}{$_}{'value'}]
        } sort {$a <=> $b} keys %{$properties{$_}}
    } sort keys %properties;