Mix.install([
{:youtube, github: "brooklinjazz/youtube"},
{:hidden_cell, github: "brooklinjazz/hidden_cell"},
{:tested_cell, github: "brooklinjazz/tested_cell"},
{:utils, path: "#{__DIR__}/../utils"}
])
Ensure you type the ea
keyboard shortcut to evaluate all Elixir cells before starting. Alternatively you can evaluate the Elixir cells as you read.
Let's try to comprehend comprehensions..sorry 🤦♂️.
But in all seriousness, you might mistake a comprehension for a for loop if you're coming from another programming language. This is not the case! Notice below that the comprehension returns a list.
for each <- 1..100 do
each * 2
end
Since the comprehension has a return value, it can be bound to a variable and used elsewhere.
my_comprehension =
for each <- 1..10 do
each * 2
end
List.to_tuple(my_comprehension)
A comprehension can even be piped into another function.
for each <- 1..10 do
each * 2
end
|> List.to_tuple()
In an OOP language without immutability, it's common to use
for loops to mutate some variable. We don't do that in Elixir! Notice below that sum
is still 0.
sum = 0
for each <- 1..100 do
sum = sum + each
sum
end
sum
So what are comprehensions for? Currently, we can accomplish the same behavior with the Enum module.
Enum.map(1..100, fn each -> each * 2 end)
A comprehension is syntax sugar. That means that while it may look cleaner, it does not provide any additional behavior. The Enum module and comprehensions can accomplish the same behavior.
A comprehension is broken down into three parts: generators, filters, and collectables.
In the following example, the generator is n <- 1..100
which defines the collection to enumerate over.
for n <- 1..100 do
n
end
We can also use pattern matching in the generator to ignore non-matching values.
for {:keep, value} <- [keep: 1, keep: 2, filter: 1, filter: 3] do
value
end
Here's where comprehensions get cool and stop looking like loops. You can use multiple comma-separated generators in a single comprehension.
The comprehension treats each additional generator like a nested loop. For each element in the first loop, it will enumerate through every element in the second loop.
for a <- 1..3, b <- 4..6 do
{a, b}
end
flowchart
subgraph D[generator 2]
4a[4]
5a[5]
6a[6]
end
subgraph C[generator 2]
4b[4]
5b[5]
6b[6]
end
subgraph B[generator 2]
4c[4]
5c[5]
6c[6]
end
subgraph A[generator 1]
1 --> B
2 --> C
3 --> D
end
We can even use elements from one generator in the next generator.
for a <- 1..3, b <- a..0 do
{a, b}
end
flowchart
subgraph D[generator 2]
1a[1]
0a[0]
end
subgraph C[generator 2]
2b[2]
1b[1]
0b[0]
end
subgraph B[generator 2]
3c[3]
2c[2]
1c[1]
0c[0]
end
subgraph A[generator 1]
1 --> D
2 --> C
3 --> B
end
There's no real limit to the number of generators that you can use, but each generator creates another nested loop and therefore has a significant performance impact.
In the Elixir cell below, use a comprehension to create a list of even integers from 2
to 100
.
We can use filters in a comprehension to filter out elements from the generator. For example, we could omit all values not divisible by 3.
The comprehension will filter out all values that do not return true
for the filter function.
for n <- 1..100, rem(n, 3) === 0 do
n
end
We can use multiple comma-separated filters.
for a <- 1..100, rem(a, 3) === 0, rem(a, 5) === 0 do
a
end
We can also use multiple comma-separated filters and generators. Filters and generators can go in any order. However, it's likely more clear to group filters together after the generators.
for a <- 1..45, b <- 1..5, rem(a, 5) === 0, rem(b, 5) === 0 do
[a, b]
end
That said, you can put the generators and filters in alternating order.
for a <- 1..45, rem(a, 5) === 0, b <- 1..5, rem(b, 5) === 0 do
[a, b]
end
The generators must go in the order you want to nest them, otherwise, you change the behavior. The filters
must also go after any generator whose variable they rely on. For example, b
has not yet been
defined here.
for a <- 1..45, rem(a, 5) === 0, rem(b, 5) === 0, b <- 1..5 do
[a, b]
end
In the Elixir cell below, create a comprehension with a filter that generates every combination of 2 numbers up to 6 that equal 7.
flowchart
1 --- 6
2 --- 5
3 --- 4
4b[4] --- 3b[3]
5b[5] --- 2b[2]
6b[6] --- 1b[1]
[{1, 6}, {2, 5}, {3, 4}, {4, 3}, {5, 2}, {6, 1}]
By default, the comprehension returns a list. However, we can accumulate the elements into any value
with the :into
option. Into works with any collection that you're used to using with the Enum
module.
Even without the :into
option, we can create a comprehension that returns a keyword list by
using tuples with an atom as the first element and any value as the second element.
for n <- 1..5 do
{:"key_#{n}", n}
end
Now, since both maps and keyword lists are key-value tuples underneath, we can specify the :into
option to instead return a map.
for n <- 1..5, into: %{} do
{:"key_#{n}", n}
end
This map could have default values.
for n <- 1..5, into: %{default: "hello!"} do
{:"key_#{n}", n}
end
And instead of a map, it can be any data type that implements the Collectable protocol.
This includes strings!
for n <- 1..10, do: "#{n}", into: ""
In the Elixir cell below, create a comprehension that returns a map of letters abcd
and their
code points.
%{"a" => 97, "b" => 98, "c" => 99, "d" => 100}
Hint
You can use:binary.first/1
to convert a variable bound to a string to a codepoint.
Enum.map/2, Enum.reduce/2, and Enum.filter/2 can accomplish all of the same functionality as a comprehension. In general, the Enum is more broadly used than comprehensions.
Consider using comprehensions as a refactoring tool to improve the clarity of your code. They are particularely useful for building and generating collections of data. It's typically non-idiomatic to use a comprehension when the Enum module would work instead.
Avoid over relying on comprehensions, especially if you're from an Object Oriented Programming background and feel tempted to use comprehensions because they feel like for loops. Comprehensions are not for loops! Instead, consider using comprehensions to refactor and improve your code after you've already written it.
In the Elixir cell below, convert the following Enum.map
into a comprehension.
Enum.map(1..5, fn each -> each * 2 end)
[2, 4, 6, 8, 10]
In the Elixir cell below, convert the following Enum.reduce
into a comprehension.
Enum.reduce(["a", "b", "c"], fn each, acc -> acc <> each end)
"abc"
In the Elixir cell below, convert the following nested Enum.map
into a comprehension with three generators.
Enum.map(1..3, fn a -> Enum.map(1..3, fn b -> {a, b} end) end)
[[{1, 1}, {1, 2}, {1, 3}], [{2, 1}, {2, 2}, {2, 3}], [{3, 1}, {3, 2}, {3, 3}]]
Run the following in your command line from the beta_curriculum folder to track and save your progress in a Git commit.
$ git add .
$ git commit -m "finish comprehensions section"
Previous | Next |
---|---|
Non Enumerables | Palindrome |