()
| 124 | type mapEntry []byte |
| 125 | |
| 126 | func (me mapEntry) Key() []byte { |
| 127 | sz := binary.BigEndian.Uint16(me[0:2]) |
| 128 | return me[2 : 2+sz] |
| 129 | } |
| 130 | func (me mapEntry) Data() []byte { |
| 131 | sz := binary.BigEndian.Uint16(me[0:2]) |
| 132 | return me[2+sz:] |
no outgoing calls