public static IEnumerable <T> AsEnumCollection <T>(this NameValueMap nameValueMap, string index)
 {
     return(nameValueMap.GetValueAsCollection <T>(index));
 }
 public static IEnumerable <bool> AsBoolCollection(this NameValueMap nameValueMap, string index)
 {
     return(nameValueMap.GetValueAsCollection <bool>(index));
 }
 public static IEnumerable <int> AsIntCollection(this NameValueMap nameValueMap, string index)
 {
     return(nameValueMap.GetValueAsCollection <int>(index));
 }
 public static IEnumerable <double> AsDoubleCollection(this NameValueMap nameValueMap, string index)
 {
     return(nameValueMap.GetValueAsCollection <double>(index));
 }
 public static IEnumerable <string> AsStringCollection(this NameValueMap nameValueMap, string index)
 {
     return(nameValueMap.GetValueAsCollection <string>(index));
 }