Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nextASCIIString (0.35 sec)

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

    func (i *Iter) InitString(f Form, src string) {
    	i.p = 0
    	if len(src) == 0 {
    		i.setDone()
    		i.rb.nsrc = 0
    		return
    	}
    	i.multiSeg = nil
    	i.rb.initString(f, src)
    	i.next = i.rb.f.nextMain
    	i.asciiF = nextASCIIString
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.rb.ss.first(i.info)
    }
    
    // Seek sets the segment to be returned by the next call to Next to start
    // at position p.  It is the responsibility of the caller to set p to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    func (i *Iter) InitString(f Form, src string) {
    	i.p = 0
    	if len(src) == 0 {
    		i.setDone()
    		i.rb.nsrc = 0
    		return
    	}
    	i.multiSeg = nil
    	i.rb.initString(f, src)
    	i.next = i.rb.f.nextMain
    	i.asciiF = nextASCIIString
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.rb.ss.first(i.info)
    }
    
    // Seek sets the segment to be returned by the next call to Next to start
    // at position p.  It is the responsibility of the caller to set p to the
    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