| 28 | type FieldValueType uint8 |
| 29 | |
| 30 | type FieldValue struct { |
| 31 | Type FieldValueType |
| 32 | value uint64 // Also for int64 and float64 |
| 33 | str []byte |
| 34 | } |
| 35 | |
| 36 | const ( |
| 37 | FieldValueTypeNull = iota |
nothing calls this directly
no outgoing calls
no test coverage detected