|
NAMEVenus::Role::Stashable - Stashable Role ABSTRACTStashable Role for Perl 5 SYNOPSISpackage Example; use Venus::Class; with 'Venus::Role::Stashable'; attr 'test'; package main; my $example = Example->new(test => time); # $example->stash; DESCRIPTIONThis package modifies the consuming package and provides methods for stashing data within the object. METHODSThis package provides the following methods: stashstash(any $key, any $value) (any) The stash method is used to fetch and stash named values associated with the object. Calling this method without arguments returns all values. Since 0.01
AUTHORSAwncorp, "awncorp@cpan.org" LICENSECopyright (C) 2022, Awncorp, "awncorp@cpan.org". This program is free software, you can redistribute it and/or modify it under the terms of the Apache license version 2.0.
|