Nice Article.
However I fail to understand how using the enum prevents the usage of the wrong index in a data structure.
Can you explain further?
hiccuphippo•1mo ago
I guess you would need to cast the index to the enum or you get a type error, which should narrow down the possible error locations.
ThierryBuilds•1mo ago
Thanks for your response.
Wouldn't using the `_` in the enums somehow make almost all integers index "cartable" to the enums?
hiccuphippo•1mo ago
Yes, but you have to cast it explicitly. If you have two different arrays each with its own enum, the compiler would throw an error if you used the wrong one.
ThierryBuilds•1mo ago
hiccuphippo•1mo ago
ThierryBuilds•1mo ago
hiccuphippo•1mo ago
Sorry for the late response and happy new year!
ThierryBuilds•1mo ago