reference types

Value and reference types in Swift -A deep dive

The value and reference types are a very important concept in Swift. A value type contains the data within its own memory. A reference type holds a pointer to another memory location that holds the actual data. In this article,…