(prefix string, withPerfix bool)
| 199 | } |
| 200 | |
| 201 | func (r *Reader) ReadStringWithLength(prefix string, withPerfix bool) string { |
| 202 | return utils.B2S(r.ReadBytesWithLength(prefix, withPerfix)) |
| 203 | } |
| 204 | |
| 205 | func (r *Reader) ReadTlv() (result map[uint16][]byte) { |
| 206 | result = map[uint16][]byte{} |
no test coverage detected