Chris
Chris

Reputation: 589

What does variable.storage mean in the Xcode debug variable view?

With writing a new program of mine, I see some of my variables are appended with a .storage. Does that mean anything specific for that type of variable?

enter image description here

Upvotes: 1

Views: 98

Answers (1)

Jean-Baptiste Yunès
Jean-Baptiste Yunès

Reputation: 36441

That corresponds to the memory area referenced by your variable. The type is the type inferred by inspection, and the value is the memory address written in hexadecimal basis.

Upvotes: 1

Related Questions