Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		return false
    	}
    	b1 := b[1]
    	switch {
    	case b0 == hangulBase0:
    		return b1 >= hangulBase1
    	case b0 < hangulEnd0:
    		return true
    	case b0 > hangulEnd0:
    		return false
    	case b1 < hangulEnd1:
    		return true
    	}
    	return b1 == hangulEnd1 && b[2] < hangulEnd2
    }
    
    func isHangulString(b string) bool {
    	if len(b) < hangulUTF8Size {
    		return false
    	}
    	b0 := b[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		return false
    	}
    	b1 := b[1]
    	switch {
    	case b0 == hangulBase0:
    		return b1 >= hangulBase1
    	case b0 < hangulEnd0:
    		return true
    	case b0 > hangulEnd0:
    		return false
    	case b1 < hangulEnd1:
    		return true
    	}
    	return b1 == hangulEnd1 && b[2] < hangulEnd2
    }
    
    func isHangulString(b string) bool {
    	if len(b) < hangulUTF8Size {
    		return false
    	}
    	b0 := b[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
Back to top