()
| 37 | func (v Value) Ptr() *Value { return &v } |
| 38 | |
| 39 | func (v Value) Type() Type { return v.typ } |
| 40 | |
| 41 | func NewValue(t Type, b scode.Bytes) Value { return Value{t, unsafe.SliceData(b), uint64(len(b))} } |
| 42 | func (v Value) bytes() scode.Bytes { return unsafe.Slice(v.base, v.len) } |
no outgoing calls
no test coverage detected