Function name is uppercase so it can be exported
(intArr []int)
| 10 | |
| 11 | // Function name is uppercase so it can be exported |
| 12 | func IntArrToStrArr(intArr []int) []string { |
| 13 | var strArr []string |
| 14 | for _, i := range intArr { |
| 15 | strArr = append(strArr, strconv.Itoa(i)) |
| 16 | } |
| 17 | return strArr |
| 18 | } |
| 19 | |
| 20 | // We capitalize what we want to export and use |
| 21 | // lowercase on what we don't. We don't want the |
nothing calls this directly
no outgoing calls
no test coverage detected