NAME
Venus::Role::Printable - Printable Role
ABSTRACT
Printable Role for Perl 5
SYNOPSIS
package Example;
use Venus::Class;
with 'Venus::Role::Printable';
has 'test';
sub execute {
return [@_];
}
sub printer {
return [@_];
}
package main;
my $example = Example->new(test => 123);
# $example->say;
DESCRIPTION
This package provides a mechanism for outputting (printing) objects or the return value of a dispatched method call to STDOUT.
INTEGRATES
This package integrates behaviors from:
METHODS
This package provides the following methods:
print(Any @data) (Any)
The print method prints a stringified representation of the underlying data.
Since 0.01
- print example 1
-
package main; my $example = Example->new(test => 123); my $print = $example->print; # bless({test => 123}, 'Example') # 1
- print example 2
-
package main; my $example = Example->new(test => 123); my $print = $example->print('execute', 1, 2, 3); # [bless({test => 123}, 'Example'),1,2,3] # 1
print_pretty
print_pretty(Any @data) (Any)
The print_pretty method prints a stringified human-readable representation of the underlying data.
Since 0.01
- print_pretty example 1
-
package main; my $example = Example->new(test => 123); my $print_pretty = $example->print_pretty; # bless({ test => 123 }, 'Example') # 1
- print_pretty example 2
-
package main; my $example = Example->new(test => 123); my $print_pretty = $example->print_pretty('execute', 1, 2, 3); # [ # bless({ test => 123 }, 'Example'), # 1, # 2, # 3 # ] # 1
say
say(Any @data) (Any)
The say method prints a stringified representation of the underlying data, with a trailing newline.
Since 0.01
- say example 1
-
package main; my $example = Example->new(test => 123); my $say = $example->say; # bless({test => 123}, 'Example')\n # 1
- say example 2
-
package main; my $example = Example->new(test => 123); my $say = $example->say; # [bless({test => 123}, 'Example'),1,2,3]\n # 1
say_pretty
say_pretty(Any @data) (Any)
The say_pretty method prints a stringified human-readable representation of the underlying data, with a trailing newline.
Since 0.01
- say_pretty example 1
-
package main; my $example = Example->new(test => 123); my $say_pretty = $example->say_pretty; # bless({ test => 123 }, 'Example')\n # 1
- say_pretty example 2
-
package main; my $example = Example->new(test => 123); my $say_pretty = $example->say_pretty; # [ # bless({ test => 123 }, 'Example'), # 1, # 2, # 3 # ]\n # 1
AUTHORS
Cpanery, cpanery@cpan.org
LICENSE
Copyright (C) 2021, Cpanery
Read the "license" file.