Hacker News new | ask | show | jobs
by mseepgood 1594 days ago
> Exhaustive switch seems

This would only make sense on an enum type, which would be a completely new thing, so it can be introduced without breaking backward compatibility. Constants and switch on non-enum values would stay, because they are useful independent of enum types.

1 comments

Also makes sense on numbers and other patterns where you can logically enforce exhaustiveness.