Skip to content

Instantly share code, notes, and snippets.

@binarytemple
Created July 12, 2017 11:35
Show Gist options
  • Save binarytemple/b042247c9a2a27ae592f5c877367103e to your computer and use it in GitHub Desktop.
Save binarytemple/b042247c9a2a27ae592f5c877367103e to your computer and use it in GitHub Desktop.
Elixir - trivial struct updating

Elixir - trivial struct updating

defmodule User do               
  defstruct name: nil , age: nil
end                             
iex(15)> %User{}
%User{age: nil, name: nil}


iex(16)> %User{} |> struct(age: 12)
%User{age: 12, name: nil}          

iex(17)> %User{} |> struct(age: 21) |> struct(name: "dave")
%User{age: 21, name: "dave"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment