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
From time to time I have to ignore the result of a function in my code and I tend to use the generic ignore function, but as you know it can be pretty dangerous and sometimes I actually ignore a non-applied function (it's much less common since we have uncurried mode but can still happen) or something that just doesn't have the type I expect, what do you think about having for each module an ignore function, like a Int.ignore that would only accept an int for example?
The text was updated successfully, but these errors were encountered:
From time to time I have to ignore the result of a function in my code and I tend to use the generic
ignore
function, but as you know it can be pretty dangerous and sometimes I actually ignore a non-applied function (it's much less common since we have uncurried mode but can still happen) or something that just doesn't have the type I expect, what do you think about having for each module an ignore function, like aInt.ignore
that would only accept an int for example?The text was updated successfully, but these errors were encountered: