I implemented a deep copy for an object, and trying to test it.
Feels like repr used to emit something unique, but no longer.
Some fast googlin' hasn't helped me, so I reach out to you, the fine Nim community.
Is there some sort of object identifier I can access easily for something like:
var original = new AmazingObject
var copied = original.copy
assert original.id != copied.id
......... I guess I can just modify the original and test against that.
Question remains otherwise.
If I get this right, you can compare addresses:
type
Foo = ref object
id: int
var foo = Foo()
var foobar = foo
var bar = foo.id
echo cast[int64](foo.id.addr) # 139738486407248
echo cast[int64](foobar.id.addr) # 139738486407248
echo cast[int64](bar.addr) # 4272560