Skip to content

Instantly share code, notes, and snippets.

@toonsend
Created January 11, 2011 17:45
Embed
What would you like to do?
from_proplist([ { Key, Value } | Tail ], Dict) ->
AtomisedKey = convert_to_atom( Key ),
NewDict = dict:store( AtomisedKey, inner_from_proplist(Value), Dict ),
from_proplist( Tail, NewDict ).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment