Search

May 13, 2022
Issues »
...The fix is to remove the `SCOPE.alias_` dependency when resolving
  TypeTraits on certain conditions...
May 13, 2022
Issues »
...The fix is to remove the `SCOPE.alias_` dependency when resolving
  TypeTraits on certain conditions...
May 12, 2022
Issues »
...type system) is to use a public alias to a qualified version of a private...
May 12, 2022
Learn »
...expressions, Identifier is now declared as an alias to the type, if the is expression...
May 12, 2022
Learn »
...safe
    {
        CharMap result;

        // bounds
        foreach(elem; a)
        {
            alias T = typeof(elem);
            static if (isSomeChar!T...
May 12, 2022
Learn »
...know it well enough to construe one:

```
alias AA = long*[string];
static if (is(AA...
May 12, 2022
Issues »
...getMember = `__traits(getMember, sym, m)`;

template test(alias sym)
{
    static foreach (m; __traits(allMembers, sym...
May 12, 2022
Issues »
...getMember = `__traits(getMember, sym, m)`;

template test(alias sym)
{
    static foreach (m; __traits(allMembers, sym...
May 12, 2022
Issues »
...also the version that compiles should not

   alias _ = printMembers!(mixin(getMember), m);

but printMembers takes...
May 12, 2022
Issues »
...getMember)==struct))   // HERE
        {
            alias _ = printMembers!(mixin(getMember), m); // ERROR HERE
        }
    }
}

void main()
{
    alias _ = printMembers!(mixin...
219 220 221 222 223 224 225 226 227 228 229
Next ›   Last »