Skip to content

Commit f07b34f

Browse files
authored
Update README.md
1 parent c17436b commit f07b34f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,23 @@ fun showCase() {
1919
```
2020
If you want to achieve multithreading, make sure to run the coroutine with the Default dispatcher.
2121

22+
## Gradle
23+
To include this in you gradle project add the following to you root build.gradle file.
24+
```gradle
25+
allprojects {
26+
repositories {
27+
...
28+
maven { url 'https://jitpack.io' }
29+
}
30+
}
31+
```
32+
After that, include this line in your module build.gradle.
33+
```gradle
34+
dependencies {
35+
implementation 'com.github.cvb941:kotlin-parallel-collection-operations:1.0'
36+
}
37+
```
38+
2239
## Future
2340
In the future, I would like parallel reduce and other transformation functions to be implemented,
2441
as well as chunked variations of the map and future operations.

0 commit comments

Comments
 (0)