(pseudocode) ``` when(myEither) { is Left -&gt...
# codingconventions
a
(pseudocode)
Copy code
when(myEither) {
    is Left -> ...
    is Right -> ...
}