1
0
Fork 0
kifflom/buffer/bufferer.go

8 lines
64 B
Go
Raw Normal View History

2015-02-18 13:25:58 +00:00
package buffer
type (
Bufferer interface {
Next() rune
}
)