|
NAMEData::Object::Role::DumpableABSTRACTDumpable Role for Perl 5SYNOPSISpackage Example; use Moo; with 'Data::Object::Role::Dumpable'; package main; my $example = Example->new; # $example->dump DESCRIPTIONThis package provides methods for dumping the object and underlying value.METHODSThis package implements the following methods:dumpdump() : Str The dump method returns a string representation of the underlying data.
pretty_dumppretty_dump() : Str The pretty_dump method returns a string representation of the underlying data that is human-readable and useful for debugging.
pretty_printpretty_print(Any @args) : Int The pretty_print method prints a stringified human-readable representation of the underlying data.
pretty_saypretty_say(Any @args) : Int The pretty_say method prints a stringified human-readable representation of the underlying data, with a trailing newline.
print(Any @args) : Int The print method prints a stringified representation of the underlying data.
saysay(Any @args) : Int The say method prints a stringified representation of the underlying data, with a trailing newline.
AUTHORAl Newkirk, "awncorp@cpan.org"LICENSECopyright (C) 2011-2019, Al Newkirk, et al.This is free software; you can redistribute it and/or modify it under the terms of the The Apache License, Version 2.0, as elucidated in the "license file" <https://github.com/iamalnewkirk/data-object-role-dumpable/blob/master/LICENSE>. PROJECTWiki <https://github.com/iamalnewkirk/data-object-role-dumpable/wiki>Project <https://github.com/iamalnewkirk/data-object-role-dumpable> Initiatives <https://github.com/iamalnewkirk/data-object-role-dumpable/projects> Milestones <https://github.com/iamalnewkirk/data-object-role-dumpable/milestones> Contributing <https://github.com/iamalnewkirk/data-object-role-dumpable/blob/master/CONTRIBUTE.md> Issues <https://github.com/iamalnewkirk/data-object-role-dumpable/issues>
Visit the GSP FreeBSD Man Page Interface. |