Search

March 14, 2023
Issues »
...Test code:
----
enum __c_long_double : double;
alias __c_long_double c_long_double;

struct...
March 13, 2023
Issues »
...typeof(cast() a) == int[1]));
---

---
// example 3
alias Unshared(T : shared(U), U) = U;
static...
March 13, 2023
Genel »
...T x;
  @disable this(this);
  // alias x this; // işe yaramadı
  alias fmt = void delegate(in...
March 13, 2023
Learn »
...T) {
  T x;
  alias x this;
  this(T n) { x = n; }
}
alias Int = Foo!int...
March 13, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=21288

Dlang Bot <dlang-bot@dlang.rocks...
March 12, 2023
General »
...it used to, returning instead an empty alias list.

	 https://issues.dlang.org/show_bug...
March 13, 2023
Issues »
...d-------
import std.traits : getSymbolsByUDA;
import mod;
alias components = getSymbolsByUDA!(mod, Tag);
static assert(components...
March 12, 2023
Learn »
...said that, it is still possible to alias the returned type, which may be cumbersome...
March 12, 2023
Learn »
...import std.conv : text;
    return x.text;
  }
}
alias Int = Foo!int; // more simple...

import std...
March 12, 2023
Genel »
...başka bir şey mi? Kod şöyle:

```d
alias i32 = uint;
struct V2 {
  i32 x;
  i32...
129 130 131 132 133 134 135 136 137 138 139
Next ›   Last »