Search

January 20, 2023
General »
...D has symbol variables, e.g. template `alias` parameters.
* D has 1 type constructor variable...
January 20, 2023
General »
...template opApplyFromImpl(alias impl, protoDG, alias _WithAnyCombinationOfAttributes = WithAnyCombinationOfAttributes)
{
    static foreach (DG; _WithAnyCombinationOfAttributes!protoDG)
	alias opApply...
January 19, 2023
General »
...d
template RT(alias sym) {
    static if(is(typeof(sym) R == return))
        alias RT = R...
January 19, 2023
Learn »
...popFront();
}

class RangeWrapper(TRange) : Range!(ForeachType!(TRange))
{
    alias TValue = ForeachType!(TRange);

    private TRange _range;

    this...
January 19, 2023
Issues »
...it cannot set `aliasdecl` because the two `alias sort` assignments are hidden behind conditional compilation...
January 19, 2023
Issues »
...0) {
        alias x = f!(a[0]);
        alias sort = a;
    }
    else
        alias sort = a;
  }

  alias SortedItems...
January 18, 2023
General »
...ReturnType(alias func)
    if (isCallable!func)
    {
        static if (is(FunctionTypeOf!func R == return))
            alias ReturnType...
January 17, 2023
General »
...of C/C++.

In the case of alias this, we should be able to point...
January 17, 2023
General »
In some areas, D already feels like this.

Errors in function literals are an especially...
January 17, 2023
General »
...2. alias this
3. overloading
4. implicit conversion
5. multiple inheritance
6. multiple alias this...
142 143 144 145 146 147 148 149 150 151 152
Next ›   Last »