It's all documented :)

$ perldoc guts : Variables Datatypes Perl has three typedefs that handle Perl's three main data type +s: SV Scalar Value AV Array Value HV Hash Value Each typedef has specific routines that manipulate the various +data types. What is an "IV"? Perl uses a special typedef IV which is a simple signed integer + type that is guaranteed to be large enough to hold a pointer (as wel +l as an integer). Additionally, there is the UV, which is simply an un +signed IV. Perl also uses two special typedefs, I32 and I16, which will al +ways be at least 32-bits and 16-bits long, respectively. (Again, there +are U32 and U16, as well.) They will usually be exactly 32 and 16 bits + long, but on Crays they will both be 64 bits. : : etc etc $

Next to guts you might want to take a look at xs and xstut.

I don't think your WTF?'s are appropriate.


Enjoy, Have FUN! H.Merijn

In reply to Re: Where to find info on low level perl internals names? by Tux
in thread Where to find info on low level perl internals names? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.