(expr string, input interface{})
| 10 | type appender func(string) |
| 11 | |
| 12 | func UniqueList(expr string, input interface{}) []string { |
| 13 | return unique.StringSlice(List(expr, input)) |
| 14 | } |
| 15 | |
| 16 | func First(expr string, input interface{}) string { |
| 17 | l := List(expr, input) |
no test coverage detected