Modernized dependencies
- Removed all bioinfo utils
- Add
captureOutput()
andsuppressOutput()
- Cleaned up API
- Modernized build and dependencies
- Changed github namespace to
com.github.holgerbrandl
- Changed package to
kutils
Rereleased to maven-central
- Added
MicroBenchmark
for basic profiling
val mb = MicroBenchmark<String>(reps = 10)
// run config a
mb.elapseNano("config a") {
2 + 2
}
mb.elapseNano("config b") {
2 + 2
}
mb.printSummary()