Data returns the raw data contained by this Value
()
| 14 | |
| 15 | // Data returns the raw data contained by this Value |
| 16 | func (v *Value) Data() interface{} { |
| 17 | return v.data |
| 18 | } |
| 19 | |
| 20 | // String returns the value always as a string |
| 21 | func (v *Value) String() string { |
no outgoing calls