this post was submitted on 15 Mar 2024
13 points (93.3% liked)

TypeScript

79 readers
1 users here now

founded 1 year ago
MODERATORS
 

Today I'm sharing a little trick that I like to use to make switch statements cleaner and more type-safe. Happy to hear other ideas!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 6 months ago

I really appreciate compile errors in this scenario. In Rust the compiler will freak out when there are missing enum variants in a match. Tests are great, but compiler errors don't rely on exhaustive and properly written tests.