(name string, value float64)
| 89 | } |
| 90 | } |
| 91 | func (in *Instance) SetFloat64(name string, value float64) { |
| 92 | if i, ok := in.index[name]; ok { |
| 93 | in.instance.Field(i).SetFloat(value) |
| 94 | } |
| 95 | } |
| 96 | func (i *Instance) Interface() interface{} { |
| 97 | return i.instance.Interface() |
| 98 | } |