Beefy Boxes and Bandwidth Generously Provided by pair Networks Bob
more useful options
 
PerlMonks  

Re: Why does this core? or How am I being a bonehead

by McD (Chaplain)
on Mar 15, 2001 at 19:35 UTC ( [id://64772]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Why does this core? or How am I being a bonehead

I think I'm stumped too, but I'll offer this: the range operator in the second subscript makes me nervous:

$bigArr[0 .. 2] = $dataArr[$count][0 .. 2];

I'm not sure what context that gets evaulated in, but what you want is a list, I believe. If it's getting scalar by mistake, that could be trouble.

So I'd try either wrapping it in parens, or explicitly using a list:

$bigArr[0 .. 2] = $dataArr[$count][(0 .. 2)];

or

$bigArr[0 .. 2] = $dataArr[$count][0,1,2];

...and see if that helped.

Peace,
-McD

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://64772]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.