Suppose I know, based on earlier console output, that at some memory location is an object of interest:
<MySpecialObject:0x7a5125a0 This is a description of my special object>
In the ObjC debugger I could do something like po [0x7a5125a0 myMethod:arg1 arg2:arg2] to interact with this object in the debugger.
I could also do this:
(lldb) expr MySpecialObject *$foo = 0x7a5125a0
(lldb) po [foo myMethod:arg1 arg2:arg2]
What is the way to accomplish this effect (interact with object in lldb given its memory address) when debugging a Swift program?