The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Attribute::Exporter - Provides exporting attributes

SYNOPSIS

        package Foo;
        use parent qw(Attribute::Exporter);

        sub bar :Export(common){
                # ...
        }

        sub baz :Exportable(util){
                # ...
        }

        # and later
        package main;

        use Foo; # import bar()

        use Foo qw(:util); # import baz()

        use Foo qw(:all);  # import bad() and baz()