NAME

Hash::Unnest - Simple deep hash iterator

SYNOPSIS

my %hash = (
  foo => {
    bar => 'baz';
    bar2 => 'baz2';
  },
);

unnest %hash => sub {
  my ($foo,$bar,$baz) = @_;

  print "$foo $bar $baz\n";
};

DESCRIPTION

Docs a bit slim at this stage, since it's only a developer release but you should be able to figure out its relatively simple behaviour from the synopsis section.

BUGS

Most software has bugs. This module probably isn't an exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Anders Nor Berle <berle@cpan.org>

COPYRIGHT AND LICENSE

Copyright 2007 by Anders Nor Berle.

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