NAME

Data::Object::Role::Output

ABSTRACT

Data-Object Output Role

SYNOPSIS

use Data::Object::Class;

with 'Data::Object::Role::Output';

DESCRIPTION

Data::Object::Role::Output provides routines for operating on Perl 5 data objects which meet the criteria for being outputable.

METHODS

This package implements the following methods.

print

print() : NumObject

Output stringified object data.

my $print = $self->print();

say

say() : NumObject

Output stringified object data with newline.

say example
my $say = $self->say();