Interface for delegating copy process to type
| 16 | |
| 17 | // Interface for delegating copy process to type |
| 18 | type Interface interface { |
| 19 | DeepCopy() any |
| 20 | } |
| 21 | |
| 22 | // Copy creates a deep copy of whatever is passed to it and returns the copy |
| 23 | // in an any. The returned value will need to be asserted to the |
no outgoing calls
no test coverage detected
searching dependent graphs…