We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05717f1 commit 1335109Copy full SHA for 1335109
README.md
@@ -27,7 +27,7 @@ See [QuickStart.kt](/src/main/kotlin/quickstart/QuickStart.kt).
27
```kotlin
28
val map: Map<Int, Int, PureFunction<Int, Int, Return.Map<Int>>> =
29
MapConfig
30
- .withFunctions(intSerializer(), intSerializer())
+ .withFunctions<Int, Int, PureFunction<Int, Int, Return.Map<Int>>>(intSerializer(), intSerializer())
31
.init();
32
33
map.put(1, 1) //basic put
0 commit comments