Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for RuneReader (0.17 sec)

  1. src/strings/reader.go

    // license that can be found in the LICENSE file.
    
    package strings
    
    import (
    	"errors"
    	"io"
    	"unicode/utf8"
    )
    
    // A Reader implements the [io.Reader], [io.ReaderAt], [io.ByteReader], [io.ByteScanner],
    // [io.RuneReader], [io.RuneScanner], [io.Seeker], and [io.WriterTo] interfaces by reading
    // from a string.
    // The zero value for Reader operates like a Reader of an empty string.
    type Reader struct {
    	s        string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/stdmethods.go

    	"ReadFrom":      {[]string{"=io.Reader"}, []string{"int64", "error"}},              // io.ReaderFrom
    	"ReadRune":      {[]string{}, []string{"rune", "int", "error"}},                    // io.RuneReader
    	"Scan":          {[]string{"=fmt.ScanState", "rune"}, []string{"error"}},           // fmt.Scanner
    	"Seek":          {[]string{"=int64", "int"}, []string{"int64", "error"}},           // io.Seeker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. 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)
  6. api/go1.txt

    pkg io, type ReaderAt interface, ReadAt([]uint8, int64) (int, error)
    pkg io, type ReaderFrom interface { ReadFrom }
    pkg io, type ReaderFrom interface, ReadFrom(Reader) (int64, error)
    pkg io, type RuneReader interface { ReadRune }
    pkg io, type RuneReader interface, ReadRune() (int32, int, error)
    pkg io, type RuneScanner interface { ReadRune, UnreadRune }
    pkg io, type RuneScanner interface, ReadRune() (int32, int, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. 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