(caseInsensitive bool)
| 13 | } |
| 14 | |
| 15 | func NewStringList(caseInsensitive bool) *StringList { |
| 16 | return &StringList{ |
| 17 | ValueMap: map[string]zero.Zero{}, |
| 18 | CaseInsensitive: caseInsensitive, |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | func ParseStringList(v string, caseInsensitive bool) *StringList { |
| 23 | var list = NewStringList(caseInsensitive) |