# README
mmap for Human
An easy to use mmap wrapper for go. Support read, write and auto grow.
Installation
go get -u github.com/ImSingee/mmap
Quick Start
package main
import "github.com/ImSingee/mmap"
func main() {
f, err := mmap.New(mmap.NewReadWrite(""))
if err != nil {
panic("Cannot init mmap: " + err.Error())
}
defer f.Close()
_, err = f.WriteAt([]byte("Hello World!"), 0)
if err != nil {
panic(err)
}
}
License
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Constants
No description provided by the author
# Type aliases
No description provided by the author