Fix VS debugger config for Dictionary and HashSet to show only Occupied buckets
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user