Plurrrr

Mon 24 Aug 2020

Null-safety Part 1: The Fundamental Problem with Null

There are many different types of errors that programmers encounter frequently, which they must guard their programs against. Of those errors, few seem more pervasive than the infamous NullPointerException (NPE), or it’s equivalents. The cause of innumerable bugs and crashes, what programmer has not felt uneasy about the ever-present threat of this bug in their code?

Source: Null-safety Part 1: The Fundamental Problem with Null, an article by Ryan Stull.