You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _posts/2012-04-24-a-peek-inside-elixir-s-parallel-compiler.markdown
+4-4
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The idea of the parallel compiler is very simple: for each file we want to compi
14
14
15
15
In Elixir, we could write this code as follows:
16
16
17
-
def spawn_compilers([current|files], output) do
17
+
def spawn_compilers([current | files], output) do
18
18
parent = Process.self()
19
19
child = spawn_link(fn ->
20
20
:elixir_compiler.file_to_path(current, output)
@@ -32,7 +32,7 @@ In Elixir, we could write this code as follows:
32
32
:done
33
33
end
34
34
35
-
In the first line, we define a function named `spawn_compilers` that receives two arguments, the first is a list of files to compile and the second is a string telling us where to write the compiled file. The first argument is represented as a list with head and tail (`[current|files]`) where the top of the list is assigned to `current` and the remaining items to `files`. If the list is empty, the first clause of `spawn_compilers` is not going to match, the clause `spawn_compilers([], _output)` defined at the end will instead.
35
+
In the first line, we define a function named `spawn_compilers` that receives two arguments, the first is a list of files to compile and the second is a string telling us where to write the compiled file. The first argument is represented as a list with head and tail (`[current | files]`) where the top of the list is assigned to `current` and the remaining items to `files`. If the list is empty, the first clause of `spawn_compilers` is not going to match, the clause `spawn_compilers([], _output)` defined at the end will instead.
36
36
37
37
Inside `spawn_compilers`, we first retrieve the PID of the current process with `Process.self` (remember we are talking about Erlang processes/actors and not OS processes) and then proceed to spawn a new process to execute the given function in parallel. Spawning a new process is done with the `spawn_link` function.
38
38
@@ -121,13 +121,13 @@ Notice that we have two small additions. First we store the `:elixir_parent_comp
121
121
122
122
Second, our main process can now receive a new `{ :waiting, child, module }` message, so we need to extend it to account for those messages. Not only that, we need to control which PIDs we have spawned so we can notify them whenever a new module is compiled, forcing us to add a new argument to the `spawn_compilers` function. `spawn_compilers` would then be rewritten as follows:
123
123
124
-
def spawn_compilers([current|files], output, stack) do
124
+
def spawn_compilers([current | files], output, stack) do
Copy file name to clipboardexpand all lines: getting-started/basic-types.markdown
+1-1
Original file line number
Diff line number
Diff line change
@@ -348,7 +348,7 @@ What is the difference between lists and tuples?
348
348
Lists are stored in memory as linked lists, meaning that each element in a list holds its value and points to the following element until the end of the list is reached. We call each pair of value and pointer a **cons cell**:
Copy file name to clipboardexpand all lines: getting-started/pattern-matching.markdown
+3-3
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ iex> tail
102
102
Similar to the `hd/1` and `tl/1` functions, we can't match an empty list with a head and tail pattern:
103
103
104
104
```iex
105
-
iex> [h|t] = []
105
+
iex> [h | t] = []
106
106
** (MatchError) no match of right hand side value: []
107
107
```
108
108
@@ -111,7 +111,7 @@ The `[head | tail]` format is not only used on pattern matching but also for pre
111
111
```iex
112
112
iex> list = [1, 2, 3]
113
113
[1, 2, 3]
114
-
iex> [0|list]
114
+
iex> [0 | list]
115
115
[0, 1, 2, 3]
116
116
```
117
117
@@ -162,7 +162,7 @@ iex> {x, x} = {1, 2}
162
162
In some cases, you don't care about a particular value in a pattern. It is a common practice to bind those values to the underscore, `_`. For example, if only the head of the list matters to us, we can assign the tail to underscore:
Copy file name to clipboardexpand all lines: getting-started/recursion.markdown
+5-5
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Let's now see how we can use the power of recursion to sum a list of numbers:
56
56
57
57
```elixir
58
58
defmoduleMathdo
59
-
defsum_list([head|tail], accumulator) do
59
+
defsum_list([head|tail], accumulator) do
60
60
sum_list(tail, head + accumulator)
61
61
end
62
62
@@ -68,9 +68,9 @@ end
68
68
IO.putsMath.sum_list([1, 2, 3], 0) #=> 6
69
69
```
70
70
71
-
We invoke `sum_list` with the list `[1, 2, 3]` and the initial value `0` as arguments. We will try each clause until we find one that matches according to the pattern matching rules. In this case, the list `[1, 2, 3]` matches against `[head|tail]` which binds `head` to `1` and `tail` to `[2, 3]`; `accumulator` is set to `0`.
71
+
We invoke `sum_list` with the list `[1, 2, 3]` and the initial value `0` as arguments. We will try each clause until we find one that matches according to the pattern matching rules. In this case, the list `[1, 2, 3]` matches against `[head | tail]` which binds `head` to `1` and `tail` to `[2, 3]`; `accumulator` is set to `0`.
72
72
73
-
Then, we add the head of the list to the accumulator `head + accumulator` and call `sum_list` again, recursively, passing the tail of the list as its first argument. The tail will once again match `[head|tail]` until the list is empty, as seen below:
73
+
Then, we add the head of the list to the accumulator `head + accumulator` and call `sum_list` again, recursively, passing the tail of the list as its first argument. The tail will once again match `[head | tail]` until the list is empty, as seen below:
74
74
75
75
```elixir
76
76
sum_list [1, 2, 3], 0
@@ -87,8 +87,8 @@ What if we instead want to double all of the values in our list?
0 commit comments