CamelCaseSlice is like CamelCase, but the argument is a slice of strings to be joined with "_".
(elem []string)
| 2689 | // CamelCaseSlice is like CamelCase, but the argument is a slice of strings to |
| 2690 | // be joined with "_". |
| 2691 | func CamelCaseSlice(elem []string) string { return CamelCase(strings.Join(elem, "_")) } |
| 2692 | |
| 2693 | // dottedSlice turns a sliced name into a dotted name. |
| 2694 | func dottedSlice(elem []string) string { return strings.Join(elem, ".") } |
no test coverage detected