String returns the string representation of the value. This method implements the fmt.Stringer interface.
()
| 137 | // String returns the string representation of the value. |
| 138 | // This method implements the fmt.Stringer interface. |
| 139 | func (v *Value) String() string { |
| 140 | return v.ToString() |
| 141 | } |
| 142 | |
| 143 | // ToString returns the string representation of the value. |
| 144 | func (v *Value) ToString() string { |