(a []string)
| 572 | } |
| 573 | |
| 574 | func StringArrayToInterfaceArray(a []string) []interface{} { |
| 575 | l := make([]interface{}, 0) |
| 576 | for _, i := range a { |
| 577 | l = append(l, i) |
| 578 | } |
| 579 | return l |
| 580 | } |
| 581 | |
| 582 | func BoolArrayToInterfaceArray(a []bool) []interface{} { |
| 583 | l := make([]interface{}, 0) |
nothing calls this directly
no outgoing calls
no test coverage detected