Discriminated Unions — Are You Using Them?
Discriminated Unions — Are You Using Them? Photo by Beth Macdonald on Unsplash Let’s discuss a common coding situation. We call an HTTP service and want to set a loading flag. So we create a simple isLoading variable that will tell if we are waiting on the service to respond. The Problem isLoading is great until that fateful day when …