Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The Option type in the standard library uses case classes to express values that might or might not be present. The case subclass Some wraps a value, for example Some("Fred"). The case object None indicates that there is no value.
This is less ambiguous than using an empty string and safer than using null for a missing value.