Hacker News new | ask | show | jobs
by bpicolo 2903 days ago
Ah, I guess `when` is literally Kotlin's equivalent of match.

What I'm thinking of here is Rust's match statements, which do give you the ability to make use of those intermediary values by making use of Rust's enum type.

https://doc.rust-lang.org/book/second-edition/ch06-02-match....

1 comments

I see; I agree that proper pattern matching would indeed solve that as well, as e.g. Scala does.