1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00
Files
til/elixir/using-when-clauses-in-a-with-construct.md

22 lines
662 B
Markdown

# Using When Clauses In A With Construct
Because Elixir's `with` construct supports the full power of the language's
pattern matching, we can use `when` clauses to further narrow down our
matches.
For instance, if we want to match against the response to an API request,
but only for response status codes in the 2xx range, we can do something
like the following:
```elixir
with %{status_code: code, body: body}
when code >= 200 && code < 300 <- HTTPoison.get!(url),
{:ok, decoded_body} <- Poison.decode(body) do
{:ok, decoded_body}
end
```
See the [docs for
`with`](https://hexdocs.pm/elixir/Kernel.SpecialForms.html#with/1) for more
details.