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

Package::Transporter::Pre_Selection - structure of internal rule tree

DESCRIPTION

This package can't be used on its own. It maintains the internal tree of drains and potentials. The structure for the Synopsis looks like:

        $RULES = bless( {
                '' => {
                        '' => [ rule for $yn ],
                },
                '>>' => {
                        'IS_' => [ rule for ::Constant_Function::Flatened ],
                },
                'Synopsis' => {
                        'salut_' => [ rule for ::Hello_Anything ],
                },
                'Synopsis<<' => { # deleted after use
                        'ATB_' => [ rule for ::Constant_Function::Enumerated ],
                },
                'Synopsis::' => {
                        'hello_world' => [ rule for ::Export ],
                }
        }, 'Package::Transporter::Pre_Selection' );
        

ANYTHING ELSE

Please see the documentation of the upstream package Package::Transporter.