A note on page 248 in The Swift Programming Language (Swift 2.1) explains the following:
Global constants and variables are always computed lazily, in a similar manner to Lazy Stored Properties. Unlike lazy stored properties, global constants and variables do not need to be marked with the lazy modifier.
Local constants and variables are never computed lazily.
Excerpt From: Apple Inc. “The Swift Programming Language (Swift 2.1).” https://itunes.apple.com/us/book/swift-programming-language/id881256329?mt=11
Is there another type of constant or variable besides global properties and local values where the lazy
modifier would have an affect?