• moriquende@lemmy.world
    link
    fedilink
    arrow-up
    10
    arrow-down
    1
    ·
    8 months ago

    Not sure why you focus on arrays for deep copying. Deep copying objects is a problem in many languages and brings some challenges with itself that make it almost always necessary to delegate it to a library.

    • Bigworsh@discuss.tchncs.de
      link
      fedilink
      arrow-up
      5
      ·
      8 months ago

      Simply because it was an issue that I ran into at work. And the reason I focus on arrays is because of the previously mentioned default behaviour of arrays being cloned when passed as an argument for a function. The issue here was someone unexperienced wrote a bunch of code and used only arrays (deep ugly arrays) and it ended up being a huge mess of some references staying the same while others changed. So the only solution was to deep copy at one place. That way later operations on these arrays didn’t affect the original structure. Not pretty but refactoring would have been too much effort.