useestring::SepVec;constCOMMA:char=',';constSEMI:char=';';/// Splits substring by comma character and returns ``SepVec``
pubtypeCommaVec<T>=SepVec<T, COMMA>;/// Splits substring by semicolon character and returns ``SepVec``
pubtypeSemiVec<T>=SepVec<T, SEMI>;