I am displaying an array (a pointer inside a structure, with the array size being defined by a calloc) using the lldb parray command given here
This shows me the value of the array in the following format:
(float *) $0 = 0x123456789 {
(float) [0] = 0.0012
(float) [1] = 0.123456
(float) [2] = 0.0012
(float) [3] = 0.123456
.
.
.
I would like to only display the array's values
0.0012
0.123456
0.0012
0.123456
.
.
.
How do I do this is the lldb console? I am using objective-c.
Also, is it possible to only display a range of values (such as from the 100th to the 150th element)?