Subject: | Vars TIEHASH interface should accept arrayrefs for STORE |
Right now, STORE in the TIEHASH interface does this:
my @vals = index($vals,"\0")!=-1 ? split("\0",$vals) : $vals;
But if $vals is an arrayref, it should really just store the arrayref.
(This would allow me to use the Vars tiehash interface interchangeably
with other hashes that might be passed into a method.)