@frozen
is really about public interfaces, but internally within a module, enum
is perfectly fine, and yes, it breaks the clients when you add a new case, which is exactly what I, and most people, want most of the time. Also, still, even a non-frozen enum in a public interface helps the compiler, because if a new case is added, the @unknown
declaration emits a warning. Thus, enums and type unions are nothing like general protocol subtyping.
Yep, and that's what I want from a union type.
No it wouldn't. It might be the case that our approaches to programming in general are very different, but it seems that the things you are considering bad or gnarly are exactly what I want
I (along with many others) want closed types that I can switch
upon, with the compiler guaranteeing that the switch
is exhaustive.
I've been programming in Swift from the very beginning, and this thing that you consider a "perk" in some cases is one of the most important, foundational features of Swift, that I used for years with great gain.
Again, it could simply be down to a matter of code style and approach. For example, consider this sentence:
I completely disagree with this. I think "multiple tidy functions" is an anti pattern that makes a code base 10x more complex, while modeling actions with value types, as I observed over the years, makes the code more maintainable in the long run.
It's different, because the type union is a first-class value that, as any other value, can be transformed, have properties and methods, et cetera. It unlocks a very different type of programming – that I would suggest to explore – that uses modeling as the essential way to tackle complexity.
But in that case I would use an actual named enum, there are only a few cases where an anonymous type union could be considered when dealing with function inputs.