ReadString is a faster implementation of Next when a string needs to be returned. It replaces: var p, err = Next(n) return string(p), err
(n int)
| 63 | // return string(p), err |
| 64 | // |
| 65 | ReadString(n int) (s string, err error) |
| 66 | |
| 67 | // ReadBinary is a faster implementation of Next when it needs to |
| 68 | // return a copy of the slice that is not shared with the underlying layer. |
no outgoing calls