| // Copyright 2009 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| // A Reader satisfies calls to Read, ReadByte, and ReadRune by |
| // reading from a string. |
| func (r *Reader) Read(b []byte) (n int, err os.Error) { |
| for n < len(s) && n < len(b) { |
| func (r *Reader) ReadByte() (b byte, err os.Error) { |
| // ReadRune reads and returns the next UTF-8-encoded |
| // Unicode code point from the buffer. |
| // If no bytes are available, the error returned is os.EOF. |
| // If the bytes are an erroneous UTF-8 encoding, it |
| // consumes one byte and returns U+FFFD, 1. |
| func (r *Reader) ReadRune() (rune int, size int, err os.Error) { |
| rune, size = utf8.DecodeRuneInString(string(s)) |
| // NewReader returns a new Reader reading from s. |
| // It is similar to bytes.NewBufferString but more efficient and read-only. |
| func NewReader(s string) *Reader { return (*Reader)(&s) } |