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
As we discussed last time we should decide upon a naming convention for functions doing "the same thing" that either gives an error on undefined input or are made total by using Option.
I believe we have two different suggestions so far.
Suggestion 1:
funNameOpt -- wrapped in Option
funName -- gives error
Suggestion 2:
funName -- wrapped in Option
funNameErr -- gives error
The text was updated successfully, but these errors were encountered:
As we discussed last time we should decide upon a naming convention for functions doing "the same thing" that either gives an
error
on undefined input or are made total by usingOption
.I believe we have two different suggestions so far.
Suggestion 1:
Suggestion 2:
The text was updated successfully, but these errors were encountered: