File: tsl-ordered-map.natvis

package info (click to toggle)
ordered-map 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 424 kB
  • sloc: cpp: 3,123; makefile: 16
file content (21 lines) | stat: -rw-r--r-- 987 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
    <!-- Written in VC 2017 15.7 but is expected to be compatible with VC 2015 -->

    <Type Name="tsl::ordered_map&lt;*&gt;">
        <AlternativeType Name="tsl::ordered_set&lt;*&gt;"/>
        <DisplayString>{m_ht.m_values}</DisplayString>
        <Expand>
            <Item Name="[bucket_count]" IncludeView="detailed">m_ht.m_buckets_data._Mypair._Myval2._Mylast - m_ht.m_buckets_data._Mypair._Myval2._Myfirst</Item>
            <Item Name="[max_load_factor]" IncludeView="detailed">m_ht.m_max_load_factor</Item>
            <ExpandedItem>m_ht.m_values</ExpandedItem>
        </Expand>
    </Type>

    <Type Name="tsl::detail_ordered_hash::ordered_hash&lt;*&gt;::ordered_iterator&lt;*&gt;">
        <DisplayString>{m_iterator}</DisplayString>
        <Expand>
            <ExpandedItem>m_iterator</ExpandedItem>
        </Expand>
    </Type>
</AutoVisualizer>