NAME
DBIx::NinjaORM::Utils - Utility functions for DBIX::NinjaORM.
VERSION
Version 3.1.0
DESCRIPTION
Collection of utility functions used by DBIX::NinjaORM to perform various ancillary tasks.
SYNOPSIS
use DBIx::NinjaORM::Utils qw( dumper );
my $string = dumper( $data_structure );
FUNCTIONS
dumper()
Utility to stringify data structures.
my $string = DBIx::NinjaORM::Utils::dumper( @data );
Internally, this uses Data::Dumper::Dumper, but you can switch it to a custom dumper with the following code:
local $DBIx::NinjaORM::Utils::DUMPER = sub
{
my ( @refs ) = @_;
# Create a stringified version.
return $string;
};
BUGS
Please report any bugs or feature requests through the web interface at https://github.com/guillaumeaubert/DBIx-NinjaORM/issues/new. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc DBIx::NinjaORM::Utils
You can also look for information at:
GitHub's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
MetaCPAN
AUTHOR
Guillaume Aubert, <aubertg at cpan.org>
.
COPYRIGHT & LICENSE
Copyright 2009-2017 Guillaume Aubert.
This code is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LICENSE file for more details.