| Form-Factory documentation | Contained in the Form-Factory distribution. |
Form::Factory::Stasher - An object responsible for remembering things
version 0.020
A stasher remembers things.
$stasher->stash($key, $hashref);
Given a $key to store it under and a $hashref to store. Remember the given information for recall with unstash.
my $hashref = $stasher->unstash($key);
Given a $key, recall a previously stored $hashref.
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
Copyright 2009 Qubling Software LLC.
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
| Form-Factory documentation | Contained in the Form-Factory distribution. |
package Form::Factory::Stasher; BEGIN { $Form::Factory::Stasher::VERSION = '0.020'; } use Moose::Role; requires qw( stash unstash );
1;