http://www.perlmonks.org?node_id=1041258


in reply to Re^2: Merging arrays
in thread Merging arrays

> Why shouldn't one be allowed to end up with data like:

No special reason.

Sometimes one has data structure which have to be unique, then using a hash is handy.

Sometimes not ... I'm just listing another way to do it for one of those loosely defined PM requirements... :)

FWIW I'll change my post to make the restriction clearer ...

update

The question is rather how to design functional constructs like map which can easily (idiomatically) be used/combined to create nested data-structures which solve all possible requirements (sorted, nested, unique, non-string keys, ...).

Thats more a design than an implementation question, I rarely see people using List::MoreUtils here.

Cheers Rolf

( addicted to the Perl Programming Language)

Replies are listed 'Best First'.
Re^4: Merging arrays
by AnomalousMonk (Archbishop) on Jun 28, 2013 at 19:26 UTC
    ... loosely defined ... requirements...

    Yes, that's always the tricky bit: to divine what the OPer really wants... or, better yet, needs!