Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl

Idiom #298 Copy a map

Create the map y by cloning the map x.

y is a shallow copy, not a deep copy.

my %y = %x;

As requested in the Idiom description - this only works on simple maps; it is a shallow copy.
var y = Map.of(x);

New implementation...