Help for this page

Select Code to Download


  1. or download this
    print Dumper \@executions, scalar(@executions);
    
  2. or download this
    my @executions = $jobInfo->{'content'}{'executions'};
    
  3. or download this
    my @executions = $jobInfo->{'content'}{'executions'}->@*; # requires P
    +erl 5.36+
    
    # Alternatively
    
    my @executions = @{ $jobInfo->{'content'}{'executions'} };