(a []string, f func(string) string)
| 52 | ) |
| 53 | |
| 54 | func stringMap(a []string, f func(string) string) []string { |
| 55 | b := make([]string, len(a)) |
| 56 | for i, v := range a { |
| 57 | b[i] = f(v) |
| 58 | } |
| 59 | return b |
| 60 | } |
| 61 | |
| 62 | func makeDeleteMapQry(tableName string) string { |
| 63 | return fmt.Sprintf(deleteMapQryTemplate, tableName) |
no test coverage detected