in reply to Perl precedence details

Is there any list of built-ins treated as named unary operators?

Out of curiosity I tried looking for myself:

use B::Keywords qw/@Barewords @Functions/; use Pod::Functions '%Type'; # overkill my %all = (%Type, map {$_=>1} @Barewords, @Functions); for my $f (sort keys %all) { my $p = eval { prototype("CORE::$f") }; $p = defined $p ? "($p)" : ''; print "$f $p\n"; }

Replies are listed 'Best First'.
Re^2: Perl precedence details
by QM (Parson) on Jun 22, 2015 at 10:44 UTC
    Nice.

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