Tie::IxHash::FromText - A parser for contructing IxHash objects


Tie-IxHash-FromText documentation Contained in the Tie-IxHash-FromText distribution.

Index


Code Index:

NAME

Top

    Tie::IxHash::FromText - A parser for contructing IxHash objects

SEE ALSO

Top

Tie::IxHash::FromText

THE AUTHOR

Top

Yung-chung Lin (a.k.a. xern) <xern@cpan.org>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself


Tie-IxHash-FromText documentation Contained in the Tie-IxHash-FromText distribution.

package Tie::DxHash::FromText;

use strict;

use Tie::DxHash;

require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(
                 dxhash_parse
                 );

use Tie::IxHash::FromText::Parse;

sub dxhash_parse {
    Tie::IxHash::FromText::Parse::_parse(shift(), 'd');
}


1;
__END__