NAME

Jedi::Helpers::Hash - Jedi Helpers for Hash

VERSION

version 1.006

METHODS

import

Equivalent in your module to :

use autobox HASH => Jedi::Helpers::Hash

to_arrayref

Transform an headers form into an arrayref

Ex :

{
	'X-Test' => [ "AAA" ],
	'Set-Cookie' => ["T1=1", "T2=2"],
}

become

[ 
	"X-Test", "AAA",
	"Set-Cookie", "T1=1",
	"Set-Cookie", "T2=2",
]

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/celogeek/perl-jedi/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

celogeek <me@celogeek.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by celogeek <me@celogeek.com>.

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