• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gitignoreH A D07-May-2020266

.travis.ymlH A D07-May-2020104

LICENSEH A D07-May-20201.1 KiB

README.mdH A D07-May-2020589

filebuffer.goH A D07-May-20205.1 KiB

filebuffer_test.goH A D07-May-20205.2 KiB

README.md

1# filebuffer
2
3filebuffer is a package implementing a few file-like interfaces such as `io.Reader`, `io.ReaderAt`, `io.Seeker` and more.
4The implementation is backed by a byte buffer and the main purpose is to have in-memory alternative to using an io.File.
5
6More information can be found on the [GoDoc page](https://godoc.org/github.com/mattetti/filebuffer).
7
8[![GoDoc](http://godoc.org/github.com/mattetti/filebuffer?status.svg)](http://godoc.org/github.com/mattetti/filebuffer)
9
10[![Build Status](https://travis-ci.org/mattetti/filebuffer.png)](https://travis-ci.org/mattetti/filebuffer)
11