AddSliceIntKey marshals the given []int s
(k string, s []int)
| 44 | |
| 45 | // AddSliceIntKey marshals the given []int s |
| 46 | func (enc *Encoder) AddSliceIntKey(k string, s []int) { |
| 47 | enc.SliceIntKey(k, s) |
| 48 | } |
| 49 | |
| 50 | // SliceIntKey marshals the given []int s |
| 51 | func (enc *Encoder) SliceIntKey(k string, s []int) { |