(s string)
| 40 | } |
| 41 | |
| 42 | func makeByte(s string) byte { |
| 43 | var b byte |
| 44 | if s == "" { |
| 45 | return b |
| 46 | } |
| 47 | return []byte(s)[0] |
| 48 | } |
| 49 | |
| 50 | func makeUint32Slice(in []uint64) []uint32 { |
| 51 | out := make([]uint32, len(in)) |
no outgoing calls
no test coverage detected