Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 97f9816

Browse files
committed
Collection呼び出しになっていなかった問題を修正
1 parent 9f5d1cc commit 97f9816

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/jmh/kotlin/com/mapk/fastkfunction/fastkfunction/CallInstanceMethodBenchmark.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ open class CallInstanceMethodBenchmark {
3939
fun fastKFunctionWithoutInstanceCall(): Constructor5 = fastKFunctionWithoutInstance.call(1, 2, 3, 4, 5)
4040

4141
@Benchmark
42-
fun fastKFunctionWithoutInstanceCallByCollection(): Constructor5 = fastKFunctionWithoutInstance.call(collection)
42+
fun fastKFunctionWithoutInstanceCallByCollection(): Constructor5 =
43+
fastKFunctionWithoutInstance.callByCollection(collection)
4344

4445
@Benchmark
4546
fun fastKFunctionWithoutInstanceCallBy(): Constructor5 = fastKFunctionWithoutInstance.callBy(argumentBucket)

0 commit comments

Comments
 (0)