Redundant match default
Match has a default case
But it is something completely different from .default, which makes sense
However, it can lead to writing the same code 2 times.
In particular, this can be seen in the Fluent API:
Is there a build-in way to do this? E.g.
Or is it best to just make a wrapper that adds these 2 versions like (untyped):
4 Replies
I don't understand your point here... what's the runtime difference betweenand?
Right I should point out that it mainly matters when using match in an object
Second one make property optional just like .default with other types
When first one still require it, just use it as fallback when given value don't fit
Right... would making the object keys all optional fix it?
Not quite
Making key optional make it just optional
So in case above instead of none we will get just undefined