-
-
Notifications
You must be signed in to change notification settings - Fork 401
Closed
Labels
component: wingmantype: bugSomething isn't right: doesn't work as intended, documentation is missing/outdated, etc..Something isn't right: doesn't work as intended, documentation is missing/outdated, etc..
Description
data ADT = One | Two Int | Three | Four Bool ADT | Five
case_split :: ADT -> Int
case_split One = _
case_split (Two i) = _
case_split Three = _
case_split (Four b a) = _ -- here
case_split Five = _
Splitting on either b
or a
at -- here
deletes the entire case_split (Four b a)
match.
berberman
Metadata
Metadata
Assignees
Labels
component: wingmantype: bugSomething isn't right: doesn't work as intended, documentation is missing/outdated, etc..Something isn't right: doesn't work as intended, documentation is missing/outdated, etc..