Skip to content

Instantly share code, notes, and snippets.

@txrev319
Created June 2, 2014 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save txrev319/229b2d8a0adf81c8d6c6 to your computer and use it in GitHub Desktop.
Save txrev319/229b2d8a0adf81c8d6c6 to your computer and use it in GitHub Desktop.
data Doc = Doc { tag :: Node, order :: [Id], childs :: Map Id Doc }
doc__get_child :: Doc -> Id -> Doc
doc__get_child doc id = fromJust (Data.Map.lookup id (childs doc))
doc__set_child :: Doc -> Id -> Doc -> Doc
doc__set_child doc id value = doc { childs = Data.Map.insert id value (childs doc) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment