This proposal is not longer active. Context: https://twitter.com/siddharthkp/status/909818777314902016
| import Maybe from 'folktale/maybe'; | |
| const Inc = 'Inc'; | |
| const Dec = 'Dec'; | |
| const IncBy = 'IncBy'; | |
| const IncFn = state => state + 1; | |
| const DecFn = state => state - 1; | |
| const IncByFn = (state, action) => state + action.incBy; |
| type field = | |
| | O | |
| | X; | |
| type position = (field, field, field, field); | |
| type unit = (position, position, position, position); | |
| type units = list(unit); |
This proposal is not longer active. Context: https://twitter.com/siddharthkp/status/909818777314902016