func github.com/prometheus/common/expfmt.isBlankOrTab

5 uses

	github.com/prometheus/common/expfmt (current package)
		text_parse.go#L198: 	if !isBlankOrTab(p.currentByte) {
		text_parse.go#L529: 		if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil || !isBlankOrTab(p.currentByte) {
		text_parse.go#L538: 	if isBlankOrTab(p.currentByte) {
		text_parse.go#L549: 	for p.err == nil && !isBlankOrTab(p.currentByte) && p.currentByte != '\n' {
		text_parse.go#L719: func isBlankOrTab(b byte) bool {