How would you take a list of strings, eg.
["jeff", "bezos", "21"]
and map that to a struct
%{:fistname => "jeff", :lastname => "bezos", :age => "21"}
Is it possible to use the Enum functions or would you use the map functions. I need this struct in the specified format so that I can then send it to a database