Is there any simple profiler for Kotlin? I’m writi...
# announcements
g
Is there any simple profiler for Kotlin? I’m writing an algo and would like to know which part take the most of time
l
You have
measureNanoTime { ... }
in the stdlib which you can use
👌 1
y
all Java profilers work for Kotlin too. YourKit, JProfiler etc.