Documentation ¶ Overview ¶ The LimitReader function in the io package accepts an io.Reader r and a number of bytes n, and returns another Reader that reads from r but reports and end-of-file condition after n bytes. Implement it. func LimitReader(r io.Reader, n int64) io.Reader Source Files ¶ View all Source files exercise7_5.go Click to show internal directories. Click to hide internal directories.