_calculate_row()
I was dereferencing, and then taking a reference to, something that was already a hash reference.
_calculate_row( \%{ ${$period}{$_} } );
_calculate_row( ${$period}{$_} );
_calculate_row( \%{$period} );
_calculate_row( $period );
Previous | Back to start of show |
Slide: 11 someone_else_stare | © 2003 James E. Keenan |