Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
522 B
29 lines
522 B
//+build !go1.10 |
|
|
|
package lz4 |
|
|
|
import ( |
|
"bytes" |
|
"fmt" |
|
) |
|
|
|
func (h Header) String() string { |
|
var s bytes.Buffer |
|
|
|
s.WriteString(fmt.Sprintf("%T{", h)) |
|
if h.BlockChecksum { |
|
s.WriteString("BlockChecksum: true ") |
|
} |
|
if h.NoChecksum { |
|
s.WriteString("NoChecksum: true ") |
|
} |
|
if bs := h.BlockMaxSize; bs != 0 && bs != 4<<20 { |
|
s.WriteString(fmt.Sprintf("BlockMaxSize: %d ", bs)) |
|
} |
|
if l := h.CompressionLevel; l != 0 { |
|
s.WriteString(fmt.Sprintf("CompressionLevel: %d ", l)) |
|
} |
|
s.WriteByte('}') |
|
|
|
return s.String() |
|
}
|
|
|