NAME

TableData::Object::hash - Manipulate hash via table object

VERSION

This document describes version 0.113 of TableData::Object::hash (from Perl distribution TableData-Object), released on 2021-01-10.

SYNOPSIS

To create:

use TableData::Object qw(table);

my $td = table({foo=>10, bar=>20, baz=>30});

or:

use TableData::Object::hash;

my $td = TableData::Object::hash->new({foo=>10, bar=>20, baz=>30});

DESCRIPTION

This class lets you manipulate a hash as a table object. The table will have two columns named key (containing hash keys) and value (containing hash values).

METHODS

See TableData::Object::Base.

HOMEPAGE

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

SOURCE

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

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/perlancar/perl-TableData-Object/issues

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, 2020, 2019, 2017, 2016, 2015, 2014 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.