func unicode.IsPrint

9 uses

	unicode (current package)
		graphic.go#L50: func IsPrint(r rune) bool {

	github.com/google/go-cmp/cmp
		report_reflect.go#L217: 			isPrintSpace := func(r rune) bool { return unicode.IsPrint(r) || unicode.IsSpace(r) }
		report_reflect.go#L330: 			return unicode.IsPrint(r) || r == '\t' // specially treat tab as printable
		report_reflect.go#L384: 		return r == '`' || r == '\n' || !(unicode.IsPrint(r) || r == '\t')
		report_slices.go#L121: 			if (unicode.IsPrint(r) || unicode.IsSpace(r)) && r != utf8.RuneError {
		report_slices.go#L207: 					return unicode.IsPrint(r) || r == '\t' // specially treat tab as printable

	regexp/syntax
		regexp.go#L255: 	if unicode.IsPrint(r) {

	text/template
		funcs.go#L688: 			if unicode.IsPrint(r) {

	text/template/parse
		lex.go#L421: 	case r <= unicode.MaxASCII && unicode.IsPrint(r):