Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FirstBoundaryInString (0.21 sec)

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

    		if i >= nsrc {
    			if !info.BoundaryAfter() && !ss.isMax() {
    				return -1
    			}
    			return nsrc
    		}
    	}
    }
    
    // FirstBoundaryInString returns the position i of the first boundary in s
    // or -1 if s contains no boundary.
    func (f Form) FirstBoundaryInString(s string) int {
    	return f.firstBoundary(inputString(s), len(s))
    }
    
    // NextBoundary reports the index of the boundary between the first and next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		if i >= nsrc {
    			if !info.BoundaryAfter() && !ss.isMax() {
    				return -1
    			}
    			return nsrc
    		}
    	}
    }
    
    // FirstBoundaryInString returns the position i of the first boundary in s
    // or -1 if s contains no boundary.
    func (f Form) FirstBoundaryInString(s string) int {
    	return f.firstBoundary(inputString(s), len(s))
    }
    
    // NextBoundary reports the index of the boundary between the first and next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top