rust-tcl
rust-tcl copied to clipboard
Clone should not duplicate the object
A Tcl object is reference counted so it behaves like a Rc. Calling clone on a Rc does not copy the contents but just the smart pointer. The same should happen for tcl::Object.
Ah ok, duly noted