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: README.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -33,18 +33,18 @@ Flow pipelines starts several processes linked to the current process. This mean
33
33
34
34
1. Use `Flow.stream(flow, link: false)` to explicitly convert a Flow to a non-linked stream. You can them invoke `Enum` and `Stream` functions regularly:
35
35
36
-
```elixir
37
-
Flow.from_enumerable([1, 2, 3])
38
-
|>Flow.map(&&1*2)
39
-
|>Flow.stream(link:false)
40
-
|>Enum.to_list()
41
-
```
36
+
```elixir
37
+
Flow.from_enumerable([1, 2, 3])
38
+
|>Flow.map(&&1*2)
39
+
|>Flow.stream(link:false)
40
+
|>Enum.to_list()
41
+
```
42
42
43
43
2. By trapping exits once before the Flow computation starts:
0 commit comments