func unicode.IsPunct

3 uses

	unicode (current package)
		graphic.go#L113: func IsPunct(r rune) bool {

	github.com/yuin/goldmark/util
		util.go#L821: 	return int32(r) <= 256 && IsPunct(byte(r)) || unicode.IsPunct(r)

	golang.org/x/pkgsite/internal/postgres
		searchdoc.go#L143: 	s = strings.TrimFunc(s, unicode.IsPunct)