Venus::Role::Explainable - Explainable Role
Explainable Role for Perl 5
package Example; use Venus::Class; attr 'test'; sub explain { "okay" } with 'Venus::Role::Explainable'; package main; my $example = Example->new(test => 123); # $example->explain;
This package modifies the consuming package and provides methods for making the object stringifiable.
This package provides the following methods:
explain() (any)
The explain method takes no arguments and returns the value to be used in stringification operations.
Since 0.01
0.01
package main; my $example = Example->new(test => 123); my $explain = $example->explain; # "okay"
Awncorp, awncorp@cpan.org
awncorp@cpan.org
Copyright (C) 2000, 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.
To install Venus, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Venus
CPAN shell
perl -MCPAN -e shell install Venus
For more information on module installation, please visit the detailed CPAN module installation guide.