├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── libraries │ ├── Maven__net_sf_jopt_simple_jopt_simple_4_6.xml │ ├── Maven__org_apache_commons_commons_math3_3_2.xml │ ├── Maven__org_jetbrains_annotations_13_0.xml │ ├── Maven__org_jetbrains_kotlin_kotlin_stdlib_1_2_30.xml │ └── Maven__org_openjdk_jmh_jmh_core_1_20.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml ├── vcs.xml └── workspace.xml ├── README.md ├── benchmarks.iml ├── commands.txt ├── pom.xml ├── report ├── benchmarks.baseline.json ├── benchmarks.json ├── jquery.dynatable.css ├── jquery.dynatable.js ├── report.html ├── report.js └── report_java.html ├── src └── main │ ├── java │ └── org │ │ └── kotlinacademy │ │ └── PrimitivesJavaBenchmark.java │ └── kotlin │ └── org │ └── kotlinacademy │ ├── DataModel.kt │ ├── InlineFilterBenchmark.kt │ ├── InlineRepeatBenchmark.kt │ ├── PrimitiveArraysBenchmark.kt │ └── SequencesBenchmark.kt └── zdf-win.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | kotlin-benchmarks -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sf_jopt_simple_jopt_simple_4_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/libraries/Maven__net_sf_jopt_simple_jopt_simple_4_6.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_commons_commons_math3_3_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/libraries/Maven__org_apache_commons_commons_math3_3_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_jetbrains_annotations_13_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/libraries/Maven__org_jetbrains_annotations_13_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_jetbrains_kotlin_kotlin_stdlib_1_2_30.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/libraries/Maven__org_jetbrains_kotlin_kotlin_stdlib_1_2_30.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_openjdk_jmh_jmh_core_1_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/libraries/Maven__org_openjdk_jmh_jmh_core_1_20.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/benchmarks.iml -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/commands.txt -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/pom.xml -------------------------------------------------------------------------------- /report/benchmarks.baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/report/benchmarks.baseline.json -------------------------------------------------------------------------------- /report/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/report/benchmarks.json -------------------------------------------------------------------------------- /report/jquery.dynatable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/report/jquery.dynatable.css -------------------------------------------------------------------------------- /report/jquery.dynatable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/report/jquery.dynatable.js -------------------------------------------------------------------------------- /report/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/report/report.html -------------------------------------------------------------------------------- /report/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/report/report.js -------------------------------------------------------------------------------- /report/report_java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/report/report_java.html -------------------------------------------------------------------------------- /src/main/java/org/kotlinacademy/PrimitivesJavaBenchmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/src/main/java/org/kotlinacademy/PrimitivesJavaBenchmark.java -------------------------------------------------------------------------------- /src/main/kotlin/org/kotlinacademy/DataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/src/main/kotlin/org/kotlinacademy/DataModel.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/kotlinacademy/InlineFilterBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/src/main/kotlin/org/kotlinacademy/InlineFilterBenchmark.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/kotlinacademy/InlineRepeatBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/src/main/kotlin/org/kotlinacademy/InlineRepeatBenchmark.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/kotlinacademy/PrimitiveArraysBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/src/main/kotlin/org/kotlinacademy/PrimitiveArraysBenchmark.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/kotlinacademy/SequencesBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/src/main/kotlin/org/kotlinacademy/SequencesBenchmark.kt -------------------------------------------------------------------------------- /zdf-win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcinMoskala/effective-kotlin-tests/HEAD/zdf-win.txt --------------------------------------------------------------------------------