elm-checkerboardgrid-tutorial
elm-checkerboardgrid-tutorial copied to clipboard
ChildAction
In Grid.elm, there's this type:
type Action childAction
= ChildAction Int childAction
This looks like a tagged union type with only one union (no |
). Is that what it is? There is only one type of Action
, and that is ChildAction Int childAction
?