Search

March 18, 2022
Issues »
...taken from std.meta.allSatisfy
template allSatisfy(alias F, T...)
{
    static foreach (Ti; T)
    {
        static...
March 18, 2022
Issues »
...stdint.d:
---
alias int8_t   = char;
alias uint8_t  = ubyte;

dmd/globals.d:
---
alias d...
March 18, 2022
Learn »
...Nullable.get_` is deprecated - Implicit conversion with `alias Nullable.get this` will be removed after...
March 17, 2022
Issues »
...void main()
{
    int x = 2;
    {
        import lib;
        alias x = lib.x;
        assert(x == 1);
    }
}
---

The...
March 17, 2022
Issues »
...Dennis <dkorpel@live.nl> ---
Version without templates:

```
alias T = immutable int;

T** f1(const T...
March 17, 2022
Issues »
...i;
    T p = &i;
}

Instead, gives:

    test.c(5): Error: alias `T` recursive alias declaration

--
March 15, 2022
General »
struct DStruct {
    CStruct c_version;
    alias c_version this;
    DStruct op...
}
March 14, 2022
Issues »
...returned by `__traits(parameters)` bound to an alias:

  - the parser rejected `typeof(__traits(X))`, i...
March 13, 2022
Genel »
...T[])arr[n .. n + m];
  }
  return sonuç;
}

alias Tür = int;

void main()
{
  auto dizi = 3...
March 13, 2022
Learn »
...Optional, the expected value type.
 */
template isCompileTimeValue(alias V, T...)
if (T.length == 0 || (T...
237 238 239 240 241 242 243 244 245 246 247
Next ›   Last »