Versions in this module Expand all Collapse all v1 v1.0.0 Feb 24, 2021 Changes in this version + const MaxIDLen + type Blob struct + func New() *Blob + func Read(r io.Reader) (*Blob, error) + func (b *Blob) Append(id string, data []byte) + func (b *Blob) GetByID(id string) (data []byte, found bool) + func (b *Blob) GetByIndex(i int) (data []byte, found bool) + func (b *Blob) Write(w io.Writer) (err error) + func (h Blob) GetIDAtIndex(i int) string + func (h Blob) ItemCount() int + type BlobReader struct + func Open(r io.ReadSeeker) (*BlobReader, error) + func (b *BlobReader) GetByID(id string) (r io.ReadSeeker, found bool) + func (b *BlobReader) GetByIndex(i int) (r io.ReadSeeker, found bool) + func (h BlobReader) GetIDAtIndex(i int) string + func (h BlobReader) ItemCount() int