Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ReadSeeker", Type, 0},
    		{"ReadWriteCloser", Type, 0},
    		{"ReadWriteSeeker", Type, 0},
    		{"ReadWriter", Type, 0},
    		{"Reader", Type, 0},
    		{"ReaderAt", Type, 0},
    		{"ReaderFrom", Type, 0},
    		{"RuneReader", Type, 0},
    		{"RuneScanner", Type, 0},
    		{"SectionReader", Type, 0},
    		{"SeekCurrent", Const, 7},
    		{"SeekEnd", Const, 7},
    		{"SeekStart", Const, 7},
    		{"Seeker", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top