-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathkr.tree
More file actions
466 lines (466 loc) · 30.9 KB
/
kr.tree
File metadata and controls
466 lines (466 loc) · 30.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE instance-profile SYSTEM "https://resources.jetbrains.com/writerside/1.0/product-profile.dtd">
<instance-profile id="kr" name="Kotlin" start-page="home.topic" status="release">
<toc-element toc-title="Home" topic="home.topic"/>
<toc-element toc-title="Get started" topic="getting-started.md"/>
<toc-element toc-title="Take Kotlin tour" topic="kotlin-tour-welcome.md">
<toc-element hidden="true" topic="kotlin-tour-hello-world.md"/>
<toc-element hidden="true" topic="kotlin-tour-basic-types.md"/>
<toc-element hidden="true" topic="kotlin-tour-collections.md"/>
<toc-element hidden="true" topic="kotlin-tour-control-flow.md"/>
<toc-element hidden="true" topic="kotlin-tour-functions.md"/>
<toc-element hidden="true" topic="kotlin-tour-classes.md"/>
<toc-element hidden="true" topic="kotlin-tour-null-safety.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-extension-functions.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-scope-functions.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-lambdas-receiver.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-classes-interfaces.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-objects.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-open-special-classes.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-properties.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-null-safety.md"/>
<toc-element hidden="true" topic="kotlin-tour-intermediate-libraries-and-apis.md"/>
</toc-element>
<toc-element toc-title="What's new in Kotlin">
<toc-element toc-title="Kotlin 2.4.0-Beta1" topic="whatsnew-eap.md"/>
<toc-element toc-title="Kotlin 2.3.20" accepts-web-file-names="whatsnew.html" topic="whatsnew2320.md"/>
<toc-element toc-title="Kotlin 2.3.0" topic="whatsnew23.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-23.md"/>
</toc-element>
<toc-element toc-title="Language guide">
<toc-element toc-title="Basic syntax">
<toc-element toc-title="Overview" topic="basic-syntax.md"/>
<toc-element topic="keyword-reference.md"/>
<toc-element topic="packages.md"/>
<toc-element topic="annotations.md"/>
<toc-element topic="visibility-modifiers.md"/>
</toc-element>
<toc-element topic="coding-conventions.md"/>
<toc-element topic="idioms.md"/>
<toc-element toc-title="Types">
<toc-element toc-title="Overview" topic="types-overview.md" accepts-web-file-names="basic-types.html"/>
<toc-element topic="numbers.md"/>
<toc-element topic="unsigned-integer-types.md"/>
<toc-element topic="booleans.md"/>
<toc-element topic="characters.md"/>
<toc-element topic="strings.md"/>
<toc-element topic="arrays.md"/>
<toc-element topic="typecasts.md"/>
<toc-element topic="type-aliases.md"/>
</toc-element>
<toc-element toc-title="Control flow">
<toc-element topic="control-flow.md"/>
<toc-element topic="returns.md"/>
</toc-element>
<toc-element toc-title="Exception handling" topic="exceptions.md"/>
<toc-element toc-title="Functions">
<toc-element topic="functions.md"/>
<toc-element toc-title="Lambdas" topic="lambdas.md"/>
<toc-element topic="this-expressions.md"/>
<toc-element toc-title="Builders">
<toc-element topic="type-safe-builders.md"/>
<toc-element topic="using-builders-with-builder-inference.md"/>
</toc-element>
<toc-element topic="context-parameters.md"/>
<toc-element topic="inline-functions.md"/>
<toc-element topic="operator-overloading.md"/>
<toc-element topic="unused-return-value-checker.md"/>
</toc-element>
<toc-element toc-title="Classes and interfaces">
<toc-element topic="classes.md"/>
<toc-element topic="data-classes.md"/>
<toc-element topic="extensions.md"/>
<toc-element topic="interfaces.md"/>
<toc-element topic="delegation.md"/>
<toc-element topic="inheritance.md"/>
<toc-element topic="object-declarations.md"/>
<toc-element toc-title="Special classes and interfaces">
<toc-element topic="sealed-classes.md"/>
<toc-element topic="enum-classes.md"/>
<toc-element topic="inline-classes.md"/>
<toc-element topic="nested-classes.md"/>
<toc-element topic="fun-interfaces.md"/>
</toc-element>
<toc-element toc-title="Properties">
<toc-element topic="properties.md"/>
<toc-element topic="delegated-properties.md"/>
</toc-element>
</toc-element>
<toc-element topic="null-safety.md"/>
<toc-element topic="equality.md"/>
<toc-element toc-title="Generics" topic="generics.md"/>
<toc-element toc-title="Concurrency">
<toc-element topic="async-programming.md"/>
<toc-element topic="coroutines-overview.md"/>
</toc-element>
<toc-element topic="reflection.md"/>
<toc-element accepts-web-file-names="multi-declarations.html" topic="destructuring-declarations.md"/>
<toc-element toc-title="Language reference">
<toc-element toc-title="Grammar" href="https://kotlinlang.org/grammar/"/>
<toc-element href="https://kotlinlang.org/spec/" toc-title="Language specification"/>
</toc-element>
</toc-element>
<toc-element toc-title="Development">
<toc-element toc-title="Server-side development">
<toc-element toc-title="Overview" accepts-web-file-names="httpservlets.html" topic="server-overview.md"/>
<toc-element topic="mixing-java-kotlin-intellij.md" toc-title="Add Kotlin to a Java project"/>
<toc-element topic="jvm-test-using-junit.md" toc-title="Test Java code with Kotlin"/>
<toc-element toc-title="Create a web app with Kotlin and Spring Boot">
<toc-element accepts-web-file-names="jvm-spring-boot-restful.html,spring-boot-restful.html,spring-boot-restful-db.html,jvm-spring-boot-restful-db.html" topic="jvm-get-started-spring-boot.md"/>
<toc-element toc-title="Create a Spring Boot project" topic="jvm-create-project-with-spring-boot.md"/>
<toc-element toc-title="Upgrade your project with data classes" topic="jvm-spring-boot-add-data-class.md"/>
<toc-element topic="jvm-spring-boot-add-db-support.md"/>
<toc-element toc-title="Use Spring Data CrudRepository" topic="jvm-spring-boot-using-crudrepository.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Web development">
<toc-element topic="web-overview.md"/>
<toc-element toc-title="Kotlin/JS">
<toc-element toc-title="Overview" topic="js-overview.md"/>
<toc-element topic="js-get-started.md"/>
<toc-element accepts-web-file-names="command-line-library-js.html,working-with-javascript.html,setting-up.html,kotlin-to-javascript.html,create-library-js.html,getting-started-with-intellij-idea.html,getting-started-with-maven.html" topic="js-project-setup.md"/>
<toc-element topic="running-kotlin-js.md"/>
<toc-element topic="dev-server-continuous-compilation.md"/>
<toc-element accepts-web-file-names="debugging-kotlin-in-browser.html" topic="js-debugging.md"/>
<toc-element accepts-web-file-names="running-tests.html" topic="js-running-tests.md"/>
<toc-element topic="js-frameworks.md"/>
<!-- The following page is used in the Mari link service. If you wish to change it here, change the link there too -->
<toc-element topic="js-ir-compiler.md"/>
<toc-element topic="js-plain-objects.md"/>
<toc-element hidden="true" topic="js-react.md"/>
</toc-element>
<toc-element toc-title="WebAssembly (Wasm)">
<toc-element toc-title="Overview" topic="wasm-overview.md"/>
<toc-element topic="wasm-get-started.md"/>
<toc-element topic="wasm-wasi.md"/>
<toc-element topic="wasm-debugging.md"/>
<toc-element topic="wasm-js-interop.md"/>
<toc-element accepts-web-file-names="wasm-troubleshooting.html" topic="wasm-configuration.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Native development">
<toc-element toc-title="Overview" topic="native-overview.md"/>
<toc-element accepts-web-file-names="basic-kotlin-native-app.html,kotlin-native-with-clion.html,targeting-multiple-platforms.html,native-gradle.html,native-command-line-compiler.html" topic="native-get-started.md"/>
<toc-element topic="native-libraries.md"/>
<toc-element topic="native-platform-libs.md"/>
<toc-element toc-title="Memory manager">
<toc-element topic="native-memory-manager.md"/>
<toc-element toc-title="Integration with ARC" accepts-web-file-names="native-ios-integration.html" topic="native-arc-integration.md"/>
<toc-element toc-title="Migration guide" topic="native-migration-guide.md"/>
</toc-element>
<toc-element toc-title="Binary options" topic="native-binary-options.md"/>
<toc-element topic="native-debugging.md"/>
<toc-element toc-title="Target and host support" topic="native-target-support.md"/>
<toc-element toc-title="Improving compilation time" topic="native-improving-compilation-time.md"/>
<toc-element toc-title="Customizing LLVM passes" topic="native-llvm-passes.md"/>
<toc-element toc-title="License files" topic="native-binary-licenses.md"/>
<toc-element topic="native-faq.md"/>
</toc-element>
<toc-element toc-title="Android development" topic="android-overview.md"/>
<toc-element toc-title="Designing your library">
<include from="api-guidelines.tree" origin="api-guidelines" element-id="api-guidelines"/>
</toc-element>
<toc-element toc-title="Kotlin custom scripting" topic="custom-script-deps-tutorial.md"/>
<toc-element toc-title="Development tooling">
<toc-element toc-title="IDE for Kotlin development" accepts-web-file-names="getting-started-eclipse.html,eclipse.html" topic="kotlin-ide.md"/>
<toc-element toc-title="Dokka">
<include from="dokka.tree" origin="dokka" element-id="dokka"/>
</toc-element>
<toc-element accepts-web-file-names="quick-run.html" topic="run-code-snippets.md"/>
<toc-element toc-title="KDoc" topic="kotlin-doc.md"/>
<toc-element toc-title="OSGi" topic="kotlin-osgi.md"/>
<toc-element toc-title="TeamCity" topic="kotlin-and-ci.md"/>
<toc-element hidden="true" toc-title="Migrate to Kotlin code style with IntelliJ IDEA" topic="code-style-migration-guide.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Interoperability">
<toc-element toc-title="Java interop">
<toc-element topic="comparison-to-java.md"/>
<toc-element topic="java-interop.md"/>
<toc-element topic="java-to-kotlin-interop.md"/>
<toc-element topic="jvm-records.md"/>
<toc-element toc-title="Java to Kotlin migration guides">
<toc-element toc-title="Strings" topic="java-to-kotlin-idioms-strings.md"/>
<toc-element toc-title="Collections" topic="java-to-kotlin-collections-guide.md"/>
<toc-element toc-title="Nullability" topic="java-to-kotlin-nullability-guide.md"/>
<toc-element topic="standard-input.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="JavaScript interop">
<toc-element topic="browser-api-dom.md"/>
<toc-element accepts-web-file-names="calling-javascript-from-kotlin.html" topic="js-interop.md"/>
<toc-element topic="dynamic-type.md"/>
<toc-element topic="using-packages-from-npm.md"/>
<toc-element topic="js-to-kotlin-interop.md"/>
<toc-element topic="js-modules.md"/>
<toc-element topic="js-reflection.md"/>
<toc-element topic="typesafe-html-dsl.md"/>
</toc-element>
<toc-element toc-title="Swift/Objective-C and C interop">
<toc-element toc-title="Swift/Objective-C interop">
<toc-element topic="native-objc-interop.md"/>
<toc-element topic="apple-framework.md"/>
</toc-element>
<toc-element toc-title="Swift export" topic="native-swift-export.md"/>
<toc-element toc-title="C interop">
<toc-element topic="native-c-interop.md"/>
<toc-element topic="mapping-primitive-data-types-from-c.md"/>
<toc-element topic="mapping-struct-union-types-from-c.md"/>
<toc-element topic="mapping-function-pointers-from-c.md"/>
<toc-element topic="mapping-strings-from-c.md"/>
<toc-element toc-title="Create a dynamic library – tutorial" topic="native-dynamic-libraries.md"/>
<toc-element accepts-web-file-names="curl.html" topic="native-app-with-c-and-libcurl.md"/>
</toc-element>
<toc-element topic="native-definition-file.md"/>
<toc-element toc-title="External library import" accepts-web-file-names="native-c-interop-stability.html" topic="native-lib-import-stability.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Kotlin for data analysis and AI">
<toc-element toc-title="Kotlin for data analysis">
<toc-element toc-title="Overview" accepts-web-file-names="data-science-overview.html" topic="data-analysis-overview.md"/>
<toc-element topic="kotlin-notebook-overview.md" toc-title="Kotlin Notebook overview"/>
<toc-element toc-title="Get started with Kotlin Notebook">
<toc-element toc-title="Introduction to Kotlin Notebook" topic="get-started-with-kotlin-notebooks.md"/>
<toc-element toc-title="1. Set up an environment" topic="kotlin-notebook-set-up-env.md"/>
<toc-element toc-title="2. Create your first Kotlin Notebook" topic="kotlin-notebook-create.md"/>
<toc-element toc-title="3. Add dependencies to a Kotlin Notebook" topic="kotlin-notebook-add-dependencies.md"/>
</toc-element>
<toc-element toc-title="Share a Kotlin Notebook" topic="kotlin-notebook-share.md"/>
<toc-element toc-title="Output formats in Kotlin notebooks" topic="data-analysis-notebooks-output-formats.md"/>
<toc-element toc-title="Working with data sources">
<toc-element topic="data-analysis-work-with-data-sources.md"/>
<toc-element topic="data-analysis-work-with-api.md"/>
<toc-element topic="data-analysis-connect-to-db.md"/>
</toc-element>
<toc-element toc-title="Visualizing data">
<toc-element toc-title="With Kandy" topic="data-analysis-visualization.md"/>
<toc-element toc-title="With Lets-Plot for Kotlin" topic="lets-plot.md"/>
</toc-element>
<toc-element toc-title="Libraries for data analysis" topic="data-analysis-libraries.md"/>
</toc-element>
<toc-element toc-title="Kotlin for AI-powered apps">
<toc-element toc-title="Overview" topic="kotlin-ai-apps-development-overview.md"/>
<toc-element toc-title="Build a Kotlin app with Spring AI – tutorial" topic="spring-ai-guide.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Library guides">
<toc-element toc-title="Standard library">
<toc-element toc-title="Collections">
<toc-element toc-title="Overview" topic="collections-overview.md"/>
<toc-element toc-title="Create" topic="constructing-collections.md"/>
<toc-element toc-title="Traverse" topic="iterators.md"/>
<toc-element toc-title="Order" topic="collection-ordering.md"/>
<toc-element toc-title="Group" topic="collection-grouping.md"/>
<toc-element toc-title="Transform" topic="collection-transformations.md"/>
<toc-element toc-title="Filter" topic="collection-filtering.md"/>
<toc-element toc-title="Retrieve">
<toc-element topic="collection-parts.md"/>
<toc-element topic="collection-elements.md"/>
</toc-element>
<toc-element toc-title="Operations and operators">
<toc-element toc-title="Operations overview" topic="collection-operations.md"/>
<toc-element topic="collection-aggregate.md"/>
<toc-element toc-title="Write operations" topic="collection-write.md"/>
<toc-element topic="list-operations.md"/>
<toc-element topic="set-operations.md"/>
<toc-element topic="map-operations.md"/>
<toc-element topic="collection-plus-minus.md"/>
</toc-element>
<toc-element topic="sequences.md"/>
<toc-element topic="ranges.md"/>
</toc-element>
<toc-element topic="read-standard-input.md"/>
<toc-element topic="opt-in-requirements.md"/>
<toc-element topic="scope-functions.md"/>
<toc-element topic="time-measurement.md"/>
</toc-element>
<toc-element toc-title="Coroutines (kotlinx.coroutines)">
<include from="kc.tree" origin="coroutines" element-id="coroutines"/>
</toc-element>
<toc-element toc-title="Serialization (kotlinx.serialization)" topic="serialization.md"/>
<toc-element toc-title="Kotlin Metadata JVM (kotlin-metadata-jvm)" topic="metadata-jvm.md"/>
<toc-element toc-title="Lincheck (kotlinx.lincheck)">
<include from="kl.tree" origin="lincheck" element-id="lincheck"/>
</toc-element>
<toc-element toc-title="Ktor" href="https://ktor.io/docs/welcome.html"/>
</toc-element>
<toc-element toc-title="API reference">
<toc-element toc-title="Overview" topic="api-references.topic"/>
<toc-element toc-title="Standard library (stdlib)" href="https://kotlinlang.org/api/latest/jvm/stdlib/"/>
<toc-element toc-title="Test library (kotlin.test)" href="https://kotlinlang.org/api/latest/kotlin.test/"/>
<toc-element toc-title="Coroutines (kotlinx.coroutines)" href="https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/"/>
<toc-element toc-title="Serialization (kotlinx.serialization)" href="https://kotlinlang.org/api/kotlinx.serialization/kotlinx-serialization-core/"/>
<toc-element toc-title="Kotlin I/O library (kotlinx-io)" href="https://kotlinlang.org/api/kotlinx-io/"/>
<toc-element toc-title="Date and time (kotlinx-datetime)" href="https://kotlinlang.org/api/kotlinx-datetime/"/>
<toc-element toc-title="JVM Metadata (kotlinx-metadata-jvm)" href="https://kotlinlang.org/api/kotlinx-metadata-jvm/"/>
<toc-element toc-title="Ktor" href="https://api.ktor.io/"/>
<toc-element toc-title="Kotlin Gradle plugins (kotlin-gradle-plugin)" href="https://kotlinlang.org/api/kotlin-gradle-plugin/"/>
<toc-element toc-title="Compose Multiplatform Material3" href="https://kotlinlang.org/api/compose-multiplatform/material3/"/>
</toc-element>
<toc-element toc-title="Build tools">
<toc-element toc-title="Gradle">
<toc-element accepts-web-file-names="using-gradle.html" toc-title="Overview" topic="gradle.md"/>
<toc-element toc-title="Get started with Gradle – tutorial" topic="get-started-with-jvm-gradle-project.md"/>
<toc-element topic="gradle-configure-project.md"/>
<toc-element topic="gradle-best-practices.md"/>
<toc-element toc-title="Compiler options in KGP" topic="gradle-compiler-options.md"/>
<toc-element toc-title="Compilation and caches in KGP" topic="gradle-compilation-and-caches.md"/>
<toc-element toc-title="Multiplatform Gradle DSL" href="https://kotlinlang.org/docs/multiplatform/multiplatform-dsl-reference.html"/>
<toc-element toc-title="Binary compatibility validation in KGP" topic="gradle-binary-compatibility-validation.md"/>
<toc-element topic="gradle-plugin-variants.md"/>
</toc-element>
<toc-element toc-title="Maven">
<toc-element toc-title="Overview" accepts-web-file-names="using-maven.html" topic="maven.md"/>
<toc-element toc-title="Configure project" topic="maven-configure-project.md"/>
<toc-element toc-title="Compile and package" topic="maven-compile-package.md"/>
</toc-element>
<toc-element topic="build-tools-api.md"/>
<toc-element topic="kotlin-daemon.md"/>
</toc-element>
<toc-element toc-title="Compiler and plugins">
<toc-element toc-title="Kotlin compiler">
<toc-element accepts-web-file-names="k2-compiler-guide.html" topic="k2-compiler-migration-guide.md"/>
<toc-element toc-title="Command-line compiler" topic="command-line.md"/>
<toc-element toc-title="Create a console app" topic="jvm-get-started.md"/>
<toc-element toc-title="Compiler options" topic="compiler-reference.md"/>
<toc-element topic="compiler-execution-strategy.md"/>
</toc-element>
<toc-element toc-title="Kotlin compiler plugins">
<toc-element toc-title="Overview" topic="compiler-plugins-overview.md"/>
<toc-element toc-title="All-open" topic="all-open-plugin.md"/>
<toc-element toc-title="kapt" topic="kapt.md"/>
<toc-element toc-title="Lombok" topic="lombok.md"/>
<toc-element toc-title="No-arg" topic="no-arg-plugin.md"/>
<toc-element toc-title="Power-assert" topic="power-assert.md"/>
<toc-element toc-title="SAM with receiver" topic="sam-with-receiver-plugin.md"/>
<toc-element topic="custom-compiler-plugins.md"/>
</toc-element>
<toc-element toc-title="Compose compiler">
<toc-element toc-title="Compiler migration guide" topic="compose-compiler-migration-guide.md"/>
<toc-element toc-title="Compiler options" topic="compose-compiler-options.md"/>
</toc-element>
<toc-element toc-title="Kotlin Symbol Processing API">
<toc-element toc-title="KSP overview" topic="ksp-overview.md"/>
<toc-element toc-title="Quickstart" topic="ksp-quickstart.md"/>
<toc-element topic="ksp-why-ksp.md"/>
<toc-element toc-title="Examples" topic="ksp-examples.md"/>
<toc-element topic="ksp-additional-details.md"/>
<toc-element toc-title="Reference for Java annotation processor authors" topic="ksp-reference.md"/>
<toc-element topic="ksp-incremental.md"/>
<toc-element topic="ksp-multi-round.md"/>
<toc-element topic="ksp-multiplatform.md"/>
<toc-element topic="ksp-command-line.md"/>
<toc-element toc-title="FAQ" topic="ksp-faq.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Kotlin evolution and roadmap">
<toc-element topic="roadmap.md"/>
<toc-element toc-title="Language features and proposals" topic="kotlin-language-features-and-proposals.md"/>
<toc-element toc-title="Language evolution principles" accepts-web-file-names="kotlin-evolution.html,compatibility-modes.html" topic="kotlin-evolution-principles.md"/>
<toc-element topic="components-stability.md"/>
<toc-element hidden="true" topic="components-stability-pre-1.4.md"/>
<toc-element accepts-web-file-names="plugin-releases.html" topic="releases.md"/>
<toc-element toc-title="Earlier Kotlin releases">
<toc-element toc-title="Kotlin 2.2.x">
<toc-element toc-title="Kotlin 2.2.20" topic="whatsnew2220.md"/>
<toc-element toc-title="Kotlin 2.2.0" topic="whatsnew22.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-22.md"/>
</toc-element>
<toc-element toc-title="Kotlin 2.1.x">
<toc-element toc-title="Kotlin 2.1.20" topic="whatsnew2120.md"/>
<toc-element toc-title="Kotlin 2.1.0" topic="whatsnew21.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-21.md"/>
</toc-element>
<toc-element toc-title="Kotlin 2.0.x">
<toc-element toc-title="Kotlin 2.0.20" topic="whatsnew2020.md"/>
<toc-element toc-title="Kotlin 2.0.0" topic="whatsnew20.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-20.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.9.x">
<toc-element toc-title="Kotlin 1.9.20" topic="whatsnew1920.md"/>
<toc-element toc-title="Kotlin 1.9.0" topic="whatsnew19.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-19.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.8.x">
<toc-element toc-title="Kotlin 1.8.20" topic="whatsnew1820.md"/>
<toc-element toc-title="Kotlin 1.8.0" topic="whatsnew18.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-18.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.7.x">
<toc-element toc-title="Kotlin 1.7.20" topic="whatsnew1720.md"/>
<toc-element toc-title="Kotlin 1.7.0" topic="whatsnew17.md"/>
<toc-element topic="compatibility-guide-1720.md"/>
<toc-element topic="compatibility-guide-17.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.6.x">
<toc-element toc-title="Kotlin 1.6.20" topic="whatsnew1620.md"/>
<toc-element toc-title="Kotlin 1.6.0" topic="whatsnew16.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-16.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.5.x">
<toc-element toc-title="Kotlin 1.5.30" topic="whatsnew1530.md"/>
<toc-element toc-title="Kotlin 1.5.20" topic="whatsnew1520.md"/>
<toc-element toc-title="Kotlin 1.5.0" topic="whatsnew15.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-15.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.4.x">
<toc-element toc-title="Kotlin 1.4.30" topic="whatsnew1430.md"/>
<toc-element toc-title="Kotlin 1.4.20" topic="whatsnew1420.md"/>
<toc-element toc-title="Kotlin 1.4.0" topic="whatsnew14.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-14.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.3.x">
<toc-element toc-title="Kotlin 1.3" topic="whatsnew13.md"/>
<toc-element toc-title="Compatibility guide" topic="compatibility-guide-13.md"/>
</toc-element>
<toc-element toc-title="Kotlin 1.2" topic="whatsnew12.md"/>
<toc-element toc-title="Kotlin 1.1" topic="whatsnew11.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Early access preview (EAP)">
<toc-element toc-title="Participate" topic="eap.md"/>
<toc-element topic="configure-build-for-eap.md" accepts-web-file-names="install-eap-plugin.html"/>
</toc-element>
<toc-element toc-title="Learning materials">
<toc-element toc-title="Overview" topic="learning-materials-overview.md"/>
<toc-element href="https://hyperskill.org/tracks?category=4&utm_source=jbkotlin_hs&utm_medium=referral&utm_campaign=kotlinlang-docs&utm_content=button_1&utm_term=22.03.23" toc-title="Kotlin Core track"/>
<toc-element topic="kotlin-hands-on.md"/>
<toc-element topic="kotlin-tips.md"/>
<toc-element topic="koans.md"/>
<toc-element topic="books.md"/>
<toc-element toc-title="Advent of Code puzzles" topic="advent-of-code.md"/>
<toc-element toc-title="Learn in IDE (JetBrains Academy)">
<toc-element toc-title="Learn Kotlin" topic="edu-tools-learner.md"/>
<toc-element toc-title="Teach Kotlin" topic="edu-tools-educator.md"/>
</toc-element>
</toc-element>
<toc-element toc-title="Other resources">
<toc-element topic="faq.md"/>
<toc-element toc-title="Kotlin Foundation">
<toc-element toc-title="Kotlin Foundation" href="https://kotlinfoundation.org/"/>
<toc-element toc-title="Language Committee guidelines" href="https://kotlinfoundation.org/language-committee-guidelines/"/>
<toc-element toc-title="Submitting incompatible changes" href="https://kotlinfoundation.org/submitting-incompatible-changes/"/>
<toc-element toc-title="Brand usage" href="https://kotlinfoundation.org/guidelines/"/>
<toc-element toc-title="Kotlin Foundation FAQ" href="https://kotlinfoundation.org/faq/"/>
</toc-element>
<toc-element toc-title="Google Summer of Code">
<toc-element toc-title="Overview" topic="gsoc-overview.md"/>
<toc-element toc-title="GSoC 2026" topic="gsoc-2026.md"/>
<toc-element toc-title="GSoC 2025" topic="gsoc-2025.md"/>
<toc-element toc-title="GSoC 2024" topic="gsoc-2024.md"/>
<toc-element toc-title="GSoC 2023" topic="gsoc-2023.md"/>
</toc-element>
<toc-element hidden="true" topic="competitive-programming.md"/>
<toc-element toc-title="Community">
<toc-element topic="contribute.md"/>
<toc-element accepts-web-file-names="kug-branding.html" topic="kug-guidelines.md"/>
<toc-element accepts-web-file-names="kotlin-nights-branding.html" topic="kotlin-night-guidelines.md"/>
<toc-element topic="slack-code-of-conduct.md"/>
</toc-element>
<toc-element accepts-web-file-names="kotlin-logo.html" topic="kotlin-brand-assets.md"/>
<toc-element topic="kotlin-pdf.md"/>
<toc-element topic="security.md"/>
<toc-element toc-title="Press kit" href="https://kotlinlang.org/assets/kotlin-media-kit.pdf"/>
<toc-element hidden="true" topic="test-page.md"/>
</toc-element>
</instance-profile>