Accessing The Stored Value
This lesson goes into detail on the different ways to access optional type values.
We'll cover the following...
Probably the most important operation for optional (apart from creation) is the way you can fetch the contained value. You have already seen it working with operator*
.
However, ...