View array in LLDB: equivalent of GDB’s ‘@’ operator in Xcode 4.1
There are two ways to do this in lldb. Most commonly, you use the parray lldb command which takes a COUNT and an EXPRESSION; EXPRESSION is evaluated and should result in a pointer to memory. lldb will then print COUNT items of that type at that address. e.g. parray 10 ptr where ptr is of … Read more