1
0
Fork 0

Bufferer interface

This commit is contained in:
Gregory Eremin 2015-02-18 20:25:58 +07:00
parent 9e8610ba3b
commit b458480c68
1 changed files with 7 additions and 0 deletions

7
buffer/bufferer.go Normal file
View File

@ -0,0 +1,7 @@
package buffer
type (
Bufferer interface {
Next() rune
}
)