Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 581 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 581 Bytes

runeio

runeio is a library for manipulating runes from an underlying io.Reader.

Documentation

Getting started

// See https://godoc.org/github.com/sent-hil/runeio#RuneReader
// for `RuneReader` interface.
//
// `bufio.Reader`, `bytes.Reader` and `strings.Reader` all implement the
// interface  and can be used here.
buf := bufio.NewStringReader("Hello World")
runeio.NewRuneio(buf)

Install

go get -u github.com/sent-hil/runeio