Fix VS debugger config for Dictionary and HashSet to show only Occupied buckets

This commit is contained in:
Wojtek Figat
2021-02-07 19:28:23 +01:00
parent 6ea897b0f5
commit 9f3be80f9c

View File

@@ -52,7 +52,7 @@
<Size>_elementsCount</Size> <Size>_elementsCount</Size>
<Loop> <Loop>
<Break Condition="i == _tableSize" /> <Break Condition="i == _tableSize" />
<If Condition="_table[i]._state != 0"> <If Condition="_table[i]._state == 2">
<Item>_table[i]</Item> <Item>_table[i]</Item>
</If> </If>
<Exec>i++</Exec> <Exec>i++</Exec>
@@ -72,7 +72,7 @@
<Size>_elementsCount</Size> <Size>_elementsCount</Size>
<Loop> <Loop>
<Break Condition="i == _tableSize" /> <Break Condition="i == _tableSize" />
<If Condition="_table[i]._state != 0"> <If Condition="_table[i]._state == 2">
<Item>_table[i]</Item> <Item>_table[i]</Item>
</If> </If>
<Exec>i++</Exec> <Exec>i++</Exec>