Tagged Questions
The deep-clone tag has no wiki summary.
9
votes
1answer
2k views
Does Scala AnyRef.clone perform a shallow or deep copy?
In Scala, does AnyRef.clone perform a shallow or deep copy?
4
votes
5answers
2k views
How to deep clone interconnected objects in C#?
What is the best way to deep clone an interconnected set of objects? Example:
class A {
B theB; // optional
// ...
}
class B {
A theA; // optional
// ...
}
class Container {
...
3
votes
3answers
239 views
How to implement deep copy or clone of an object that has circular references?
I have such hierarchy:
class Sphere;
class Cube;
class SpherePair;
class Entity {};
class Cube : public Entity {
public:
list<Sphere*> spheres_;
};
class Sphere : public Entity {
public:
...
3
votes
2answers
2k views
What is the easiest way to deeply clone (copy) a mutable Scala object?
What is the easiest way to deeply clone (copy) a mutable Scala object?
1
vote
2answers
79 views
Question about MemoryStream
I am using memoryStream as deep Cloning in one of my methods. I call that method a few times, and I notice the more I call it the more it slows my program.. Is there a way to clear the memory stream ...
0
votes
4answers
74 views
Add a line break after each element is cloned
$('.footnote').clone().appendTo('#allfootnotes').append('<br>');
I have a bunch of .footnote elements all through the page, at the bottom of the page I want to list all of the footnotes on the ...