MakeString makes a String value from a []byte.
(b []byte)
| 58 | |
| 59 | // MakeString makes a String value from a []byte. |
| 60 | func MakeString(b []byte) Value { |
| 61 | return Value{String(b)} |
| 62 | } |
| 63 | |
| 64 | // Raw returns the raw bytes. All types are currently implemented as []byte. |
| 65 | func (v Value) Raw() []byte { |