Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NextBoundary (0.11 sec)

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

    	return f.firstBoundary(inputString(s), len(s))
    }
    
    // NextBoundary reports the index of the boundary between the first and next
    // segment in b or -1 if atEOF is false and there are not enough bytes to
    // determine this boundary.
    func (f Form) NextBoundary(b []byte, atEOF bool) int {
    	return f.nextBoundary(inputBytes(b), len(b), atEOF)
    }
    
    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

    	return f.firstBoundary(inputString(s), len(s))
    }
    
    // NextBoundary reports the index of the boundary between the first and next
    // segment in b or -1 if atEOF is false and there are not enough bytes to
    // determine this boundary.
    func (f Form) NextBoundary(b []byte, atEOF bool) int {
    	return f.nextBoundary(inputBytes(b), len(b), atEOF)
    }
    
    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