The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::TableData::Object::aoaos - Manipulate array of arrays-of-scalars via table object

VERSION

This document describes version 0.112 of Data::TableData::Object::aoaos (from Perl distribution Data-TableData-Object), released on 2021-04-10.

SYNOPSIS

To create:

 use Data::TableData::Object qw(table);

 my $td = table([[1,2,3], [4,5,6]]);

or:

 use Data::TableData::Object::aoaos;

 my $td = Data::TableData::Object::aoaos->new([[1,2,3], [4,5,6]]);

DESCRIPTION

This class lets you manipulate an array of arrays-of-scalars as a table object. The table will have column names column0, column1, and so on. The first array-of-scalars will determine the number of columns (unless if you also give spec).

METHODS

See Data::TableData::Object::Base.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/Data-TableData-Object.

SOURCE

Source repository is at https://github.com/perlancar/perl-Data-TableData-Object.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Data-TableData-Object

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2021 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.