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

NAME

Tie::Moose::FallbackSlot - indicate an attribute with a fallback hashref for unknown attributes

SYNOPSIS

        use v5.14;
        
        package Person::Extended {
                use Moose;
                extends "Person";
                has extra => (is => "ro", default => sub { {} });
        }
        
        my $bob = Person->new(name => "Robert");
        
        tie(
                my %bob,
                "Tie::Moose"->with_traits("FallbackSlot"),
                $bob, fallback => "extra",
        );
        
        $bob{xyz} = 123;   # $bob doesn't have an attribute called "xyz"
        say $data{xyz};    # ... so this gets stored in $bob->extra hash

DESCRIPTION

This is similar to Tie::Moose::FallbackHash, but instead of directly providing a hashref to use as fallback storage, you indicate an attribute name where the hashref can be found.

BUGS

Please report any bugs to http://rt.cpan.org/Dist/Display.html?Queue=Tie-Moose.

SEE ALSO

Tie::Moose.

AUTHOR

Toby Inkster <tobyink@cpan.org>.

COPYRIGHT AND LICENCE

This software is copyright (c) 2013 by Toby Inkster.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

DISCLAIMER OF WARRANTIES

THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.