Getting Rid of Nulls Is Indeed A Good Idea

from blog Just Some Code, | ↗ original
These days I found a Medium article titled: Why Eliminating NULLs From Your Code Will Not Make Your App Better. Its point is that when we stop using null, we replace checking for null with checking for a default value or a wrapper like Result. And there’s no major gain. But there is. The advantage of returning a wrapper like Option or Result...