Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nextNonce (0.15 sec)

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

    	return i.rb.src.bytes[a:b]
    }
    
    // Pos returns the byte position at which the next call to Next will commence processing.
    func (i *Iter) Pos() int {
    	return i.p
    }
    
    func (i *Iter) setDone() {
    	i.next = nextDone
    	i.p = i.rb.nsrc
    }
    
    // Done returns true if there is no more input to process.
    func (i *Iter) Done() bool {
    	return i.p >= i.rb.nsrc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top