# Functions

Open opens the named file for reading.
OpenAppendableFile opens an appendable file.
OpenFile is the generalized open call; most users will use Open or Create instead.
OpenSequentialFile opens a sequential file.

# Structs

AppendableFile is a wrapper of the [os.File] to provide appendable only file access.
SequentialFile is a wrapper of the [os.File] to provide sequential read only file access.