(udata []byte, typ Type, str string)
| 99 | } |
| 100 | |
| 101 | func AppendString(udata []byte, typ Type, str string) []byte { |
| 102 | data := append([]byte(str), 0) |
| 103 | return Append(udata, typ, data) |
| 104 | } |
| 105 | |
| 106 | func GetString(udata []byte, typ Type) (string, bool) { |
| 107 | data := Get(udata, typ) |
searching dependent graphs…