http://qs321.pair.com?node_id=1214165


in reply to Re^6: Can I check if a loop's scope is entered for the first time? (Devel::Callsite)
in thread Can I check if a loop's scope is entered for the first time?

Wouldn't it be better to wrap the hard paddle?

sub each_value (&); ... while (my ($a) = each_value {countdown($limit)}) { print $a, ':'; }

  • Comment on Re^7: Can I check if a loop's scope is entered for the first time? (Devel::Callsite)
  • Download Code

Replies are listed 'Best First'.
Re^8: Can I check if a loop's scope is entered for the first time? (Devel::Callsite)
by TheDamian (Vicar) on May 08, 2018 at 14:48 UTC

    No question. It would definitely be better.

    Unfortunately, there's no way to give each_value() a prototype
    that allows it to also take a thunky block as an argument...in addition
    to all the other argument types (hash, array, reference) it currently takes.

    The current declaration is:

    sub each_value (+) {...}

    but, to be able to accept a block it would require:

    sub each_value (&) {...}

    and there's no prototype marker than allows both. :-(

    Damian

      and there's no prototype marker than allows both. :-(
      Is it time for customized markers? What would that entail?

      -QM
      --
      Quantum Mechanics: The dreams stuff is made of