func strconv.IsPrint

6 uses

	strconv (current package)
		quote.go#L72: 		if r < utf8.RuneSelf && IsPrint(r) {
		quote.go#L76: 	} else if IsPrint(r) || graphicOnly && isInGraphicList(r) {
		quote.go#L483: func IsPrint(r rune) bool {
		quote.go#L530: 	if IsPrint(r) {

	fmt
		format.go#L155: 	if f.sharp && u <= utf8.MaxRune && strconv.IsPrint(rune(u)) {

	testing
		match.go#L141: 		case !strconv.IsPrint(r):