decode the fields
parent
def4a5224d
commit
3c32042d65
@ -0,0 +1,17 @@
|
||||
package ent
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
)
|
||||
|
||||
type array struct {
|
||||
slots []interface{}
|
||||
_slotType string
|
||||
decoder
|
||||
}
|
||||
|
||||
func (a *array) slotName(slot int) string { return strconv.Itoa(slot) }
|
||||
func (a *array) slotValue(slot int) interface{} { return a.slots[slot] }
|
||||
func (a *array) slotType(slot int) string { return a._slotType }
|
||||
func (a *array) slotDecoder(slot int) decoder { return a.decoder }
|
||||
func (a *array) setSlotValue(slot int, val interface{}) { a.slots[slot] = val }
|
@ -0,0 +1,20 @@
|
||||
package ent
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
)
|
||||
|
||||
type cutlVector struct {
|
||||
slots []interface{}
|
||||
_slotType string
|
||||
decoder
|
||||
}
|
||||
|
||||
func (v *cutlVector) slotName(slot int) string { return strconv.Itoa(slot) }
|
||||
func (v *cutlVector) slotValue(slot int) interface{} { return v.slots[slot] }
|
||||
func (v *cutlVector) slotType(slot int) string { return v._slotType }
|
||||
func (v *cutlVector) slotDecoder(slot int) decoder { return v.decoder }
|
||||
|
||||
func (v *cutlVector) setSlotValue(slot int, val interface{}) {
|
||||
v.slots[slot] = val
|
||||
}
|
Loading…
Reference in New Issue