MCPcopy Create free account
hub / github.com/UiPath/uipathcli / intArrayToStringArray

Method intArrayToStringArray

utils/converter/string_converter.go:52–58  ·  view source on GitHub ↗
(array []int)

Source from the content-addressed store, hash-verified

50}
51
52func (c StringConverter) intArrayToStringArray(array []int) []string {
53 result := make([]string, len(array))
54 for i, value := range array {
55 result[i] = strconv.Itoa(value)
56 }
57 return result
58}
59
60func (c StringConverter) floatArrayToStringArray(array []float64) []string {
61 result := make([]string, len(array))

Callers 1

ToStringArrayMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected