The *foo{IO} apparently holds sockets, file handles and directory handles but the last two are supposed to have their own namespaces. What whould *X{IO} return following open(X, ...) and opendir(X, ...)?
They share the *X{IO} thingy. *X{IO} will be a single PVIO struct which has some fields used for dirs and some used for filehandles.

What about other reference types: REF? Regexp? LVALUE? Any I've missed?
REF and LVALUE are just types of scalars. The things ref() returns don't have a one-to-one correspondence with typeglob slots. ref \*STDOUT is "GLOB". In 5.9.0 and above, ref \v1.2.3 will be "VSTRING". Regexp is just a package name. qr// is just a reference to a blessed scalar with some magic attached to store the regex. Scalar::Util::reftype(qr/foo/) is just "SCALAR".

NAME and PACKAGE aren't really typeglob slots. If you say *A = *B they don't get aliased. They're just info about the glob itself.


In reply to Re: Typeglob Slot Information by ysth
in thread Typeglob Slot Information by Prior Nacre V

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.