Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Where to find info on low level perl internals names?

by Corion (Patriarch)
on Oct 25, 2011 at 11:04 UTC ( [id://933600]=note: print w/replies, xml ) Need Help??


in reply to Where to find info on low level perl internals names?

For general information on Perls internal memory structures, I would look at illguts. The names for the various structures are best treated as Just Names, but the following mnemonics work for me:

SV - Scalar Value IV - Integer Value NV - Numerical Value RV - Reference Value PV - Pointer Value (like *char, for example) LV - I haven't encountered this one, maybe it lives in illguts GV - glob value. The glob is (I think) shorthand for global AV - Array Value HV - Hash Value CV - Code Value (think subroutine reference) FM - Format IO - Filehandle
The ops are also documented in illguts I believe.

Update: Typoo

Replies are listed 'Best First'.
Re^2: Where to find info on low level perl internals names?
by patcat88 (Deacon) on Oct 25, 2011 at 14:01 UTC
    LV = left hand value, used for "substr($string, 0, 10) = "replacement value";" system.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://933600]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (11)
As of 2024-04-19 16:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found