in reply to Re: Reference to a single array item in an array of hashes?
in thread Reference to a single array item in an array of hashes?

Because then I end up with really ugly stuff like this:
$jobTimes[$i]{'startX'} = int(($jobTimes[$i]{'start'} - $dayStart) * $ +scaleConst);
When I would much rather have:
$$job{'startX'} = int(($$job{'start'} - $dayStart) * $scaleConst);