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