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
Allow underscore as a type parameter when we do not need the type parameter to match any thing. It would be analogous to using an underscore for a value parameter that we don't use. For example:
listLength : List _ -> Int
As opposed to
listLength : List a -> Int
I think the underscore more clearly conveys the meaning of "This isn't important".
The text was updated successfully, but these errors were encountered:
Allow underscore as a type parameter when we do not need the type parameter to match any thing. It would be analogous to using an underscore for a value parameter that we don't use. For example:
As opposed to
I think the underscore more clearly conveys the meaning of "This isn't important".
The text was updated successfully, but these errors were encountered: