Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RuneReader (0.1 sec)

  1. src/regexp/exec.go

    func (re *Regexp) doMatch(r io.RuneReader, b []byte, s string) bool {
    	return re.doExecute(r, b, s, 0, 0, nil) != nil
    }
    
    // doExecute finds the leftmost match in the input, appends the position
    // of its subexpressions to dstCap and returns dstCap.
    //
    // nil is returned if no matches are found and non-nil if matches are found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  2. src/regexp/regexp.go

    //
    // There is also a subset of the methods that can be applied to text read
    // from a RuneReader:
    //
    //	MatchReader, FindReaderIndex, FindReaderSubmatchIndex
    //
    // This set may grow. Note that regular expression matches may need to
    // examine text beyond the text returned by a match, so the methods that
    // match text from a RuneReader may read arbitrarily far into the input
    // before returning.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/io/io.go

    type ByteWriter interface {
    	WriteByte(c byte) error
    }
    
    // RuneReader is the interface that wraps the ReadRune method.
    //
    // ReadRune reads a single encoded Unicode character
    // and returns the rune and its size in bytes. If no character is
    // available, err will be set.
    type RuneReader interface {
    	ReadRune() (r rune, size int, err error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top