Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 626 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 626 Bytes

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