## ---------------------------------------------------------------------------- # UNIVERSAL::to_s # ----------------------------------------------------------------------------- # Mastering programmed by YAMASHINA Hio # # Copyright 2006 YAMASHINA Hio # ----------------------------------------------------------------------------- # $Id$ # ----------------------------------------------------------------------------- package UNIVERSAL::to_s; use strict; use warnings; our $VERSION = '0.01'; sub UNIVERSAL::to_s { # same as String::String 0.01. wantarray ? map{ defined($_) ? "$_" : '' } @_ : join('', &UNIVERSAL::to_s); } __END__ =head1 NAME UNIVERSAL::to_s - to_s method with all objects. =head1 VERSION Version 0.01 =head1 SYNOPSIS use UNIVERSAL::to_s; print $o->to_s; if you want to_s with non-objects (un-blessed reference or scalar), you can use L. L allows calling methods on these and UNIVERSAL works as well as blessed objects. =head1 EXPORT no functions exported. but all objects have to_s method now! =head1 AUTHOR YAMASHINA Hio, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc UNIVERSAL::to_s You can also look for information at: =over 4 =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * RT: CPAN's request tracker L =item * Search CPAN L =back =head1 ACKNOWLEDGEMENTS =head1 COPYRIGHT & LICENSE Copyright 2006 YAMASHINA Hio, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut # ----------------------------------------------------------------------------- # End of File. # -----------------------------------------------------------------------------