Q&A
Ask and answer questions to make information more available to wider audiences.
Emma Jackson @jacksonemma7   21, Jun 2023 12:00 AM
lazy property in Swift
What is the lazy property in Swift?
answers 1
 
Answer 1
Jackson Buckwalter @jacksonbuckwalter1   27, Jun 2023 03:51 PM
A lazy stored property is one that does not determine its initial value until it is used for the first time. The lazy modifier is written before the declaration of a lazy stored property.