size returns the output size with currently set values.
()
| 234 | |
| 235 | // size returns the output size with currently set values. |
| 236 | func (h literalsHeader) size() int { |
| 237 | return int(h >> 60) |
| 238 | } |
| 239 | |
| 240 | func (h literalsHeader) String() string { |
| 241 | return fmt.Sprintf("Type: %d, SizeFormat: %d, Size: 0x%d, Bytes:%d", literalsBlockType(h&3), (h>>2)&3, h&((1<<60)-1)>>4, h>>60) |
no outgoing calls
no test coverage detected