Last active
September 2, 2024 17:37
-
-
Save rndD/5ba3c7c9883de396a4ea to your computer and use it in GitHub Desktop.
A tour of Go: Exercise: Readers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "code.google.com/p/go-tour/reader" | |
type MyReader struct{} | |
func (r MyReader) Read(bytes []byte) (int, error) { | |
for i := range bytes { | |
bytes[i] = 65 | |
} | |
return len(bytes), nil | |
} | |
// TODO: Add a Read([]byte) (int, error) method to MyReader. | |
func main() { | |
reader.Validate(MyReader{}) | |
} |
psydvl
commented
Aug 12, 2021
package main
import "golang.org/x/tour/reader"
type MyReader struct{}
type MyReaderError int
func (e MyReaderError) Error() string {
return "capacity max error, cap: " + string(e)
}
// TODO: Add a Read([]byte) (int, error) method to MyReader.
func (myReader MyReader) Read(b []byte) (int, error) {
if cap(b) < 1 {
return 0, MyReaderError(cap(b))
}
b[0] = 'A'
return 1, nil
}
func main() {
reader.Validate(MyReader{})
}
The description of the problem didn't make sense to me. Thank you for the solution.
The description of the problem didn't make sense to me. Thank you for the solution.
You are welcome
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment