In Apple's new Swift programming language, I came across the following:
"Classes and structures must set all of their stored properties to an appropriate initial value by the time an instance of that class or structure is created. Stored properties cannot be left in an indeterminate state."
Is the above rule valid even for @lazy Stored Properties?
