in reply to Re: undefined value as an ARRAY reference: Using Tie with IPC::Shareable : New Code.
in thread undefined value as an ARRAY reference: Using Tie with IPC::Shareable : New Code.

You're wrong about him being wrong concerning tie's return value.
my $deDuppedArrayHandle = tie @deDuppedArray, 'IPC::Shareable', undef, + \%options;
is short for
tie @deDuppedArray, 'IPC::Shareable', undef, \%options; my $deDuppedArrayHandle = tied @deDuppedArray;

tie, tied

  • Comment on Re^2: undefined value as an ARRAY reference: Using Tie with IPC::Shareable : New Code.
  • Select or Download Code