Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsPunct (0.15 sec)

  1. src/unicode/graphic.go

    func IsNumber(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pN != 0
    	}
    	return isExcludingLatin(Number, r)
    }
    
    // IsPunct reports whether the rune is a Unicode punctuation character
    // (category [P]).
    func IsPunct(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pP != 0
    	}
    	return Is(Punct, r)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	}, true
    }
    
    // isLinkAdjacentRune reports whether r can be adjacent to a symbol link.
    // The logic is the same as the go/doc/comment package.
    func isLinkAdjacentRune(r rune) bool {
    	return unicode.IsPunct(r) || r == ' ' || r == '\t' || r == '\n'
    }
    
    // splitRef splits s into a package and possibly a symbol.
    // Examples:
    //
    //	splitRef("math.Max") => ("math", "Max", true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top