| |
|
|
|
|
|
|
| |
Given `d: [dynamic]int` or `p: ^[dynamic]int` both `len(d)` and `len(p)`
work, but `p2: ^^[dynamic]int` doesn't. Same for `cap` and `for`.
So, if there are 2 or more pointers on the type, strip them.
E.g. given `p2: ^^[dynamic]int`, `p2.cap` autocompletes to `cap(p2^)`.
|