Skip to content

Instantly share code, notes, and snippets.

@marick
Created February 21, 2017 22:39
Show Gist options
  • Save marick/ceed0c601db8634819da9a400fe4e5e3 to your computer and use it in GitHub Desktop.
Save marick/ceed0c601db8634819da9a400fe4e5e3 to your computer and use it in GitHub Desktop.
--- THIS?
type Format
= Compact
| Expanded
| Editable Form
type alias DisplayedAnimal =
{ id : Id
, displayFormat : Format
-- ...
}
--- OR THIS?
type DisplayedAnimal =
= Compact Animal
| Expanded Animal
| Editable Animal Form
--- OR THIS?
type alias Form =
{ id : Id
, originalAnimal : Animal
-- ...
}
type DisplayedAnimal
= Compact Animal
| Expanded Animal
| Editable Form
-- OR ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment