how do they work with current indirect filehandles?

What's an "indirect filehandles"? You mean a lexical file handles (e.g. open(my $fh, ...))?

Perl usually accepts

open(my $fh, ...) creates the third one. Every XS module that deals with file handles should support this.

The last is the least supported by XS functions, if at all.

The first is probably the next-least supported. The very ability to have references to IO object is relatively recent. That said, I mispoke about the extent of the breakage of CPAN that only support this type of handle would cause. In fact, I really don't know how much of CPAN would break if you suddenly changes the primary way to pass file handles around.

however, the simple case I was considering was more like:

That's irrelevant. I never said it would never work.

If I said that then I was mistaken

This is what you said. Clear as mud, I know. But there's no mention of Perl 7.

the goal was to provide an alternative to the removal of features suggested in the original Perl 7 announcement

Well, that's not entirely true, right? We're specifically talking about the removal of barewords. Maybe you have other features in mind too, but they're not being discussed here. So, like I said, the problem you're trying to solve is a need to avoid barewords. So my comment stands. What I provided a few posts up solves the problem a lot more simply and cleanly.


In reply to Re^7: On Backwards Compatibility and Bareword Filehandles by ikegami
in thread On Backwards Compatibility and Bareword Filehandles by jcb

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.