DeepCopy returns a deep copy of the Collection Value
()
| 739 | |
| 740 | // DeepCopy returns a deep copy of the Collection Value |
| 741 | func (v Collection) DeepCopy() Value { |
| 742 | return Collection(Attributes(v).DeepCopy()) |
| 743 | } |
| 744 | |
| 745 | // Encode Collection Value into wire format |
| 746 | func (Collection) encode() ([]byte, error) { |
nothing calls this directly
no test coverage detected