EncodeList is called when a slice or array is encountered (except for a []byte, which is handled by EncodeBytes). Its argument is the length of the slice or array. The encoding algorithm will call the returned Encoder that many times to encode the successive values of the list. After each such call,
(n int)
| 68 | // enc2.EncodeString("b") |
| 69 | // enc2.ListIndex(1) |
| 70 | EncodeList(n int) Encoder |
| 71 | ListIndex(i int) |
| 72 | |
| 73 | // EncodeMap is called when a map is encountered. Its argument is the number of |
no outgoing calls
no test coverage detected