Elixir: You can pipe into a case statement

The pipe operator |> in Elixir is very powerful.

It passes the result of the left side in as the first parameter of the right.

They even work with case statements:

1 
|> case do 
     {:ok, body} -> body
     {:error, reason} -> {:error, reason}
     x -> x 
end 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s