So I've been fiddling, but I can't work it out.<div>Trying to make something like isStaticArray to match a vector...</div><div><br></div><div><div><font face="'courier new', monospace"><span class="Apple-tab-span" style="white-space:pre"> </span>template isVector(T : __vector(U[N]), U, size_t N) { enum bool isVector = true; }</font></div>
<div><font face="'courier new', monospace"><span class="Apple-tab-span" style="white-space:pre"> </span>template isVector(T) { enum bool isVector = false; }</font></div></div><div><br></div><div>Complains:</div><div>
<div>test.d:122: Error: Integer constant expression expected instead of N</div><div>test.d:122: Error: size of type U is not known</div><div>test.d:122: Error: base type of __vector must be a 16 byte static array, not U[N]</div>
</div><div><br></div><div>A size_t template arg should be an integer constant expression, and consequently, the size of U should be known... Bug?</div>