(w binary.Writer)
| 93 | } |
| 94 | |
| 95 | func (v valIntDec) encode(w binary.Writer) { |
| 96 | writeTypedValueHeader(w, typeIntDec) |
| 97 | w.Int32(int32(v)) |
| 98 | } |
| 99 | func (v valIntHex) encode(w binary.Writer) { |
| 100 | writeTypedValueHeader(w, typeIntHex) |
| 101 | w.Uint32(uint32(v)) |
nothing calls this directly
no test coverage detected