defaultTokenizer is the default implementation of the LineTokenizer interface. It tokenizes a line into a list of tokens using a simple state machine. This is the main point of customization for the DRAIN algorithm, and is largely domain-specific.
| 16 | // machine. This is the main point of customization for the DRAIN algorithm, and |
| 17 | // is largely domain-specific. |
| 18 | type defaultTokenizer struct{} |
| 19 | |
| 20 | var _ LineTokenizer = (*defaultTokenizer)(nil) |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected