Skip to content

Instantly share code, notes, and snippets.

View Mousaka's full-sized avatar
🌲

Kristian Lundström Mousaka

🌲
View GitHub Profile
@coreyhaines
coreyhaines / Editable.elm
Last active August 25, 2022 05:11
type Editable
module Editable exposing (..)
type Editable ofType
= NotEditing { value : ofType }
| Editing { originalValue : ofType, buffer : ofType }
value : Editable ofType -> ofType
value editable =