in reply to Combining a hash into another

And there's always this:
%styles = (%styles, %SVGcal::styles);
How big is %styles? Maybe we should overload .= for hashes:
%styles .= %SVGcal::styles;
or should it be +=?

Replies are listed 'Best First'.
Re^2: Combining a hash into another
by ambrus (Abbot) on May 27, 2008 at 05:40 UTC

    Maybe ,= or push I guess.

        Yes, and perl6 also automatically has the ,= operator according to S03.