(dst *int64)
| 136 | } |
| 137 | |
| 138 | func (r StaticReader) Long(dst *int64) (string, error) { |
| 139 | typeId, err := r.readByte() |
| 140 | if err != nil { |
| 141 | return "", err |
| 142 | } |
| 143 | if typeId != Long { |
| 144 | return "", fmt.Errorf("tried reading TAG_Long, got %d", typeId) |
| 145 | } |
| 146 | |
| 147 | name, err := r.readString() |
| 148 | if err != nil { |
| 149 | return "", err |
| 150 | } |
| 151 | |
| 152 | *dst, err = r.readLong() |
| 153 | return name, err |
| 154 | } |
| 155 | |
| 156 | func (r StaticReader) String(dst *string) (string, error) { |
| 157 | typeId, err := r.readByte() |
nothing calls this directly
no test coverage detected