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 ac7eba8 commit d23481cCopy full SHA for d23481c
src/main/java/com/fasterxml/jackson/module/kotlin/SpreadWrapper.java
@@ -0,0 +1,10 @@
1
+package com.fasterxml.jackson.module.kotlin;
2
+
3
+import kotlin.reflect.KFunction;
4
5
+class SpreadWrapper {
6
+ // Wrapper to avoid costly calls using spread operator.
7
+ static <T> T call(KFunction<T> function, Object[] args) {
8
+ return function.call(args);
9
+ }
10
+}
0 commit comments