Fix natvis VecDeque formatter
This commit is contained in:
parent
acf95adfe2
commit
cd68bd9bab
1 changed files with 7 additions and 8 deletions
|
|
@ -12,20 +12,19 @@
|
|||
</Expand>
|
||||
</Type>
|
||||
<Type Name="alloc::collections::vec_deque::VecDeque<*>">
|
||||
<DisplayString>{{ len={tail <= head ? head - tail : buf.cap - tail + head} }}</DisplayString>
|
||||
<DisplayString>{{ len={len} }}</DisplayString>
|
||||
<Expand>
|
||||
<Item Name="[len]" ExcludeView="simple">tail <= head ? head - tail : buf.cap - tail + head</Item>
|
||||
<Item Name="[len]" ExcludeView="simple">len</Item>
|
||||
<Item Name="[capacity]" ExcludeView="simple">buf.cap</Item>
|
||||
<CustomListItems>
|
||||
<Variable Name="i" InitialValue="tail" />
|
||||
|
||||
<Size>tail <= head ? head - tail : buf.cap - tail + head</Size>
|
||||
<Variable Name="i" InitialValue="0" />
|
||||
<Size>len</Size>
|
||||
<Loop>
|
||||
<If Condition="i == head">
|
||||
<If Condition="i == len">
|
||||
<Break/>
|
||||
</If>
|
||||
<Item>buf.ptr.pointer.pointer[i]</Item>
|
||||
<Exec>i = (i + 1 == buf.cap ? 0 : i + 1)</Exec>
|
||||
<Item>buf.ptr.pointer.pointer[(i + head) % buf.cap]</Item>
|
||||
<Exec>i = i + 1</Exec>
|
||||
</Loop>
|
||||
</CustomListItems>
|
||||
</Expand>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue