type bufio.SplitFunc

3 uses

	bufio (current package)
		scan.go#L32: 	split        SplitFunc // The function to split the tokens.
		scan.go#L66: type SplitFunc func(data []byte, atEOF bool) (advance int, token []byte, err error)
		scan.go#L280: func (s *Scanner) Split(split SplitFunc) {