Kotlin control flow
Core principle
Make the classified value obvious, keep branch-local predicates on their
branch, and let the compiler prove closed-domain coverage.
Procedure
Name the value being classified. If every branch tests it, use
when (subject); otherwise keep a subjectless when or if chain.
Choose the branch shape:
| Code shape |
Prefer |
| One classified value |
when (subject) |
| Unrelated boolean conditions |
Subjectless when or if/else |
| Primary case plus a branch-local predicate |
Guard condition |
| Invalid input before the main path |
Early return, require, or check |
| Closed value-returning domain |
Exhaustive when expression |
| Open input or deliberate fallback |
Explicit else |
Use a guard only on a subject when, after a primary condition, when the
extra predicate belongs to that branch and an unguarded branch still handles
the primary condition. Put the guarded branch first. Split comma-separated
conditions instead of guarding one of them.
For a closed enum, Boolean, sealed type, or nullable closed type, name every
case and omit else. Match objects by value and class/data-class subtypes
with is; retain the smart-cast payload when the mapping needs it. If the
input is an open server/platform value or needs real fallback/logging, keep
else.
Use an early return only when it removes invalid or nullable state from the
main path. Keep nesting that expresses cleanup, transaction, or error
handling.
Verify smart casts still work without as, !!, mutable temporaries, or
duplicate casts. If they do not, keep the original shape or take a smaller
refactor.
Compile and test. On failure, return to the smallest applicable earlier step
or retain the prior shape. Finish when the subject, fallbacks, and branch
data are obvious to a reader and the resulting shape is easier to scan.
Recipes
Use guarded branches to refine one case, rather than nesting an if:
return when (event) {
is Event.Message if event.isUnread -> Row.Highlighted(event.message)
is Event.Message -> Row.Normal(event.message)
Event.Empty -> Row.Empty
}
Use a subject when when repeated conditions classify one value, and include
null as a branch when it is one case in a larger classification:
return when (val selected = selection) {
null -> SelectionUi.None
is Selection.Single if selected.item.isArchived -> SelectionUi.Archived(selected.item)
is Selection.Single -> SelectionUi.Active(selected.item)
is Selection.Multiple -> SelectionUi.Count(selected.items.size)
}
Do not introduce guards on unsupported Kotlin versions, force unrelated boolean
checks into a subject when, remove an open-world fallback, or flatten code
that obscures cleanup, transactions, or errors.
Related
1---2name: kotlin-control-flow3description: Use when writing or reviewing Kotlin branching and control flow: when expressions, guard conditions, sealed type exhaustiveness, smart casts, nullable branching, early returns, or replacing complex if/else chains.4---5
6# Kotlin control flow
7
8## Core principle
9
10Make the classified value obvious, keep branch-local predicates on their
11branch, and let the compiler prove closed-domain coverage.
12
13## Procedure
14
151. Name the value being classified. If every branch tests it, use
16 `when (subject)`; otherwise keep a subjectless `when` or `if` chain.
172. Choose the branch shape:
18
19 | Code shape | Prefer |
20 |---|---|
21 | One classified value | `when (subject)` |
22 | Unrelated boolean conditions | Subjectless `when` or `if`/`else` |
23 | Primary case plus a branch-local predicate | Guard condition |
24 | Invalid input before the main path | Early return, `require`, or `check` |
25 | Closed value-returning domain | Exhaustive `when` expression |
26 | Open input or deliberate fallback | Explicit `else` |
27
283. Use a guard only on a subject `when`, after a primary condition, when the
29 extra predicate belongs to that branch and an unguarded branch still handles
30 the primary condition. Put the guarded branch first. Split comma-separated
31 conditions instead of guarding one of them.
324. For a closed enum, Boolean, sealed type, or nullable closed type, name every
33 case and omit `else`. Match objects by value and class/data-class subtypes
34 with `is`; retain the smart-cast payload when the mapping needs it. If the
35 input is an open server/platform value or needs real fallback/logging, keep
36 `else`.
375. Use an early return only when it removes invalid or nullable state from the
38 main path. Keep nesting that expresses cleanup, transaction, or error
39 handling.
406. Verify smart casts still work without `as`, `!!`, mutable temporaries, or
41 duplicate casts. If they do not, keep the original shape or take a smaller
42 refactor.
437. Compile and test. On failure, return to the smallest applicable earlier step
44 or retain the prior shape. Finish when the subject, fallbacks, and branch
45 data are obvious to a reader and the resulting shape is easier to scan.
46
47## Recipes
48
49Use guarded branches to refine one case, rather than nesting an `if`:
50
51```kotlin
52return when (event) {
53 is Event.Message if event.isUnread -> Row.Highlighted(event.message)
54 is Event.Message -> Row.Normal(event.message)
55 Event.Empty -> Row.Empty
56}
57```
58
59Use a subject `when` when repeated conditions classify one value, and include
60`null` as a branch when it is one case in a larger classification:
61
62```kotlin
63return when (val selected = selection) {
64 null -> SelectionUi.None
65 is Selection.Single if selected.item.isArchived -> SelectionUi.Archived(selected.item)
66 is Selection.Single -> SelectionUi.Active(selected.item)
67 is Selection.Multiple -> SelectionUi.Count(selected.items.size)
68}
69```
70
71Do not introduce guards on unsupported Kotlin versions, force unrelated boolean
72checks into a subject `when`, remove an open-world fallback, or flatten code
73that obscures cleanup, transactions, or errors.
74
75## Related
76
77- [Kotlin concurrency and Flow](../kotlin-concurrency-and-flow/SKILL.md) — state/event primitives.
78- [Kotlin API design](../kotlin-api-design/SKILL.md) — explicit common-code branching.