Improve var name consistency in BindingBenchmark
This commit is contained in:
parent
4b745d8717
commit
534815400c
@ -39,24 +39,22 @@ class BindingBenchmark {
|
|||||||
|
|
||||||
@Benchmark
|
@Benchmark
|
||||||
fun andThenSuccess(blackhole: Blackhole) {
|
fun andThenSuccess(blackhole: Blackhole) {
|
||||||
val result =
|
val result = provideX().andThen { x ->
|
||||||
provideX().andThen { first ->
|
provideY().andThen { y ->
|
||||||
provideY().andThen { second ->
|
Ok(x + y)
|
||||||
Ok(first + second)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
blackhole.consume(result)
|
blackhole.consume(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Benchmark
|
@Benchmark
|
||||||
fun andThenFailure(blackhole: Blackhole) {
|
fun andThenFailure(blackhole: Blackhole) {
|
||||||
val result =
|
val result = provideX().andThen { x ->
|
||||||
provideX().andThen { first ->
|
provideZ().andThen { z ->
|
||||||
provideZ().andThen { second ->
|
Ok(x + z)
|
||||||
Ok(first + second)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
blackhole.consume(result)
|
blackhole.consume(result)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user