|
NAMEVenus::Role::Defaultable - Defaultable Role ABSTRACTDefaultable Role for Perl 5 SYNOPSIS package Example;
use Venus::Class 'attr', 'with';
with 'Venus::Role::Defaultable';
attr 'name';
sub defaults {
{
name => 'example',
}
}
package main;
my $example = Example->new;
# bless({name => 'example'}, "Example")
DESCRIPTIONThis package provides a mechanism for setting default values for missing constructor arguments. 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.
|