Search

December 19, 2021
Genel »
...2], c);
  }
  override Çizgi[] kenar() { return edges; }
}

alias Painter = PainterHelper;

void main() {
  auto rnd = Random...
December 19, 2021
Issues »
...is generated by the compiler, so the alias stb_easy_font_color should be reported...
December 19, 2021
Issues »
...State state = State.INACTIVE;
    int generation = 1;
    alias state this;
    // DMDBUG: https://issues.dlang.org...
December 19, 2021
Learn »
...introduces an alias:

```c
typedef struct Bar {} Bar;
```

So `Bar` is now an alias for...
December 18, 2021
Issues »
https://issues.dlang.org/show_bug.cgi?id=21670

johanengelen@weka.io changed:

           What    |Removed...
December 18, 2021
General »
...InResult
{
    size_t index = size_t.max;
    alias index this;
    bool opCast(T : bool)() const...
December 17, 2021
General »
```
alias reversed = retro;
```

Problem solved :)
December 17, 2021
Learn »
...a normal template:
>
> ```d
> template is_same(alias value, T)
> {
>      enum is_same = is(typeof...
December 17, 2021
Learn »
...a normal template:

```d
template is_same(alias value, T)
{
    enum is_same = is(typeof...
December 17, 2021
Learn »
...something like this:

```d
bool is_same(alias value, T)() {
    return is(typeof(value) == T...
260 261 262 263 264 265 266 267 268 269 270
Next ›   Last »