()
| 113 | } |
| 114 | |
| 115 | func (me MapEntry) Key() []byte { |
| 116 | sz := binary.BigEndian.Uint32(me[8:12]) |
| 117 | return me[16 : 16+sz] |
| 118 | } |
| 119 | |
| 120 | func (me MapEntry) Plist() []byte { |
| 121 | ksz := binary.BigEndian.Uint32(me[8:12]) |
no outgoing calls
no test coverage detected