ToStringMapStringSlice casts any value to a(n) map[string][]string type.
(i any)
| 114 | |
| 115 | // ToStringMapStringSlice casts any value to a(n) map[string][]string type. |
| 116 | func ToStringMapStringSlice(i any) map[string][]string { |
| 117 | v, _ := ToStringMapStringSliceE(i) |
| 118 | return v |
| 119 | } |
| 120 | |
| 121 | // ToStringMapBool casts any value to a(n) map[string]bool type. |
| 122 | func ToStringMapBool(i any) map[string]bool { |
nothing calls this directly
no test coverage detected
searching dependent graphs…