The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Babble::Plugin::DefinedOr - Plugin for defined-or (//) syntax

SYNOPSIS

Converts usage of the defined-or syntax from

    $foo // $bar

to

    (map +(defined($_) ? $_ : $bar), $foo)[0]

SEE ALSO

// syntax