(in []uint64)
| 48 | } |
| 49 | |
| 50 | func makeUint32Slice(in []uint64) []uint32 { |
| 51 | out := make([]uint32, len(in)) |
| 52 | for i, v := range in { |
| 53 | out[i] = uint32(v) |
| 54 | } |
| 55 | return out |
| 56 | } |
| 57 | |
| 58 | func makeString(s string) *string { |
| 59 | if s == "" { |
no outgoing calls
no test coverage detected