File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,23 @@ fun showCase() {
19
19
```
20
20
If you want to achieve multithreading, make sure to run the coroutine with the Default dispatcher.
21
21
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
+
22
39
## Future
23
40
In the future, I would like parallel reduce and other transformation functions to be implemented,
24
41
as well as chunked variations of the map and future operations.
You can’t perform that action at this time.
0 commit comments