(n int)
| 57 | // LineStates is an interface for a buffer-like object which can also store the states and matches for every line |
| 58 | type LineStates interface { |
| 59 | LineBytes(n int) []byte |
| 60 | LinesNum() int |
| 61 | State(lineN int) State |
| 62 | SetState(lineN int, s State) |
no outgoing calls