Files
db_in_45_steps_go/0105/kv_entry.go
T
2026-07-24 22:03:42 +02:00

21 lines
278 B
Go

package db0105
import (
"errors"
"io"
)
type Entry struct {
key []byte
val []byte
deleted bool
}
func (ent *Entry) Encode() []byte
var ErrBadSum = errors.New("bad checksum")
func (ent *Entry) Decode(r io.Reader) error
// QzBQWVJJOUhU https://trialofcode.org/