Avoid attribute soup by doing attribute-infering for function(s) of template type

Paul Backus snarwin at gmail.com
Thu Jan 30 01:45:49 UTC 2025


On Wednesday, 29 January 2025 at 22:24:56 UTC, An Pham wrote:
>
> The problem for 'const' is that it is transitive. Without 
> adding it, it has problem using from 'const' caller but adding 
> 'const' will prohibit it used in 'class' type

You can make it work for classes by making the return type 
`const(T)`:

     const(T) get(size_t i) const nothrow @safe
     {
         return data[i];
     }

This way, the types match, and no conversion is necessary.


More information about the Digitalmars-d mailing list