Versions in this module Expand all Collapse all v0 v0.1.0 Oct 16, 2023 Changes in this version + type FileArray struct + func NewFileArray(filename string, readOnly bool) (*FileArray[T], error) + func (fileArray *FileArray[T]) Append(item T) (serialization.Offset, error) + func (fileArray *FileArray[T]) Close() error + func (fileArray *FileArray[T]) Count() serialization.Length + func (fileArray *FileArray[T]) Expand(items serialization.Length) error + func (fileArray *FileArray[T]) GetFileName() string + func (fileArray *FileArray[T]) GetItemFromIndex(index serialization.Offset) (T, error) + func (fileArray *FileArray[T]) Prefetch() + func (fileArray *FileArray[T]) Reopen(readOnly bool) error + func (fileArray *FileArray[T]) SetItemAtIndex(item T, index serialization.Offset) error + func (fileArray *FileArray[T]) ShrinkWrap() error + func (fileArray *FileArray[T]) Unmap() error + type Header struct