Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit f689c4b

Browse files
lewisclementiHiD
authored andcommitted
Update with specific concurrency concepts separate
To-do: implement an example for each concurrency concept
1 parent 4e10d9c commit f689c4b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

languages/rust/reference/exercise-concepts/parallel-letter-frequency.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ This exercise boasts a wide variety of possible solutions in combination with th
2828
- Consuming/non-consuming
2929
- As per the second example: `FromIterator` trait
3030
- **For loop**
31-
- **Parallelism**
32-
- Spawning and joining
33-
- Channels
34-
- *`Mutex` and `RwLock`**
3531
- **References**
3632
- Reference counters (`Arc` in this situation)
3733
- Dereferencing
@@ -40,6 +36,13 @@ This exercise boasts a wide variety of possible solutions in combination with th
4036
- `move`
4137
- Dropping
4238
- **Crates**
39+
- **Parallelism**
40+
- Spawning and joining
41+
#### Concepts related to parallelism
42+
- **Channels**
43+
- **`Mutex` and `RwLock`***
44+
- **Futures**
45+
- **Reference counting**
4346

4447
*<sub>*Related but here not applicable for reasonable solutions</sub>*
4548

0 commit comments

Comments
 (0)