You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, there is a lot of duplicate code in parsers for slightly different operations, most notably parsing all args to a type and parsing the first arg to the same type. This can likely be simplified by making the base parser signature IEnumerable<T?> Parser<T>(IEnumerable<string>? values, bool flag) and adding generic extension methods for things like .FirstValid().
The text was updated successfully, but these errors were encountered:
Currently, there is a lot of duplicate code in parsers for slightly different operations, most notably parsing all args to a type and parsing the first arg to the same type. This can likely be simplified by making the base parser signature
IEnumerable<T?> Parser<T>(IEnumerable<string>? values, bool flag)
and adding generic extension methods for things like.FirstValid()
.The text was updated successfully, but these errors were encountered: