Versions in this module Expand all Collapse all v1 v1.0.0 Sep 24, 2023 Changes in this version + type File struct + func (f *File) Close() error + func (f *File) Read(size int) (string, error) + func (f *File) ReadAll() (string, error) + func (f *File) ReadAllBytes() ([]byte, error) + func (f *File) ReadBytes(size int) ([]byte, error) + func (f *File) ReadLines() ([]string, error) + func (f *File) Seek(offset int64) error + func (f *File) SeekEnd() error + func (f *File) SeekStart() error + func (f *File) Write(content string) (int, error) + func (f *File) WriteBytes(content []byte) (int, error)