<div dir="ltr"><div>The use of unions is really limited: across the whole of my /usr/include/KF5, I see 5 in one component called kjs (some Javascript interpreter thing by the looks of it). From a superficial look, it really does look like the polymorphic case but there is no obvious/explicit "what_type" in any of those case.<br><br></div>That said, my basic thinking is to assume that the reader/writer knows what they are doing AND that from a SIP perspective, all I need is to provide Python access to the storage. So, for access to the individual members of the union, all I need do is take care of the change in representation between a C++ int/float/whatever and the corresponding Python object. That then leaves the union itself: there it seems to me that just doing a C++ memcpy in one direction or the other is all that is required. I *think* that pretty much covers the bases...<br><br><br><br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On 5 February 2017 at 11:15, Barry Scott <span dir="ltr"><<a href="mailto:barry@barrys-emacs.org" target="_blank">barry@barrys-emacs.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
> On 4 Feb 2017, at 23:53, Shaheed Haque <<a href="mailto:srhaque@theiet.org">srhaque@theiet.org</a>> wrote:<br>
><br>
> Acknowledged. Any thoughts on the union idea?<br>
><br>
<br>
</span>I don’t know SIP but thinking about what it should look like from Python.<br>
<br>
Some unions are for interpreting the bit pattern in memory different ways. Hopefully you have none of them.<br>
<br>
Other unions are really polymorphism. Can you return each of the types that the union represents on output and accept any of the types on input?<br>
<br>
Struct OddUNionTHing {<br>
<br>
Enum what_type;<br>
Union {<br>
        Struct1 type1;<br>
        Struct2 type2;<br>
} union1;<br>
}<br>
<br>
If what_type says we have type1 return conversion of type1, etc.<br>
<br>
Does the KDE code really use unions? I’m surprised in OO code.<br>
<span class="HOEnZb"><font color="#888888"><br>
Barry<br>
<br>
</font></span></blockquote></div><br></div>