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
I just personally find pattern matching like that more aesthetically pleasing than the if then else construct. I assumed there wouldn't be any performance difference.
I'm not really sure if I'm missing something, but why are you using
case
to pattern match on a boolean in the Haskell source, when all of thosecould be replaced by simple
if isVisited then ... else ...
?The text was updated successfully, but these errors were encountered: