Skip to content

pablisco/kotlin-benchmarks

Repository files navigation

kotlin-benchmarks

Build Status Results

A place to bench kotlin features and their options.

Tests so far:

  • by lazy: Comparing all three threading options
  • String formatting: Comparing the various options available to concatenate and format strings
  • For Loop: Comparing for(i in range), range.forEach { } and range.forEachIndexed {}
  • Lambda vs function reference