Search

January 15, 2023
Issues »
...R.init.front.init) T))
        alias ElementType = T;
    else
        alias ElementType = void;
  }

What is happening...
January 15, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=23620

--- Comment #5 from Max Samukha <maxsamukha...
January 15, 2023
Learn »
...import std.variant;

    private
    Variant[string] values; alias
                    values this;
    @property {
      Variant opDispatch(string name...
January 14, 2023
Issues »
...void main()
{
  struct Index
  {
    size_t value;
    alias value this;
  }

  enum size_t i = Index...
January 14, 2023
Issues »
...T* some_function() {
    assertOp(1);
    return null;
  }
  alias some_function this;
}

struct ReclamationBatch {

  FixedArray!(uint...
January 14, 2023
Issues »
...some_function() {
    assertOp !""(1, 1);
    return null;
  }
  alias some_function this;
}


struct ReclamationBatch {

  FixedArray !(uint...
January 14, 2023
Issues »
...Destination, 0, Length);}

alias MoveMemory = RtlMoveMemory;
alias CopyMemory = RtlCopyMemory;
alias FillMemory = RtlFillMemory;
alias ZeroMemory = RtlZeroMemory...
January 14, 2023
Issues »
...1fe9ffb6722c902bf0a3fcd78cfb740bcbf1bc31 by Basile Burg:
  fix issue 23620 - 'alias this' is not respected in static array...
January 14, 2023
Issues »
...struct TestType(T)
{
  import std.traits : Unsigned;
  alias U = Unsigned!T;

  T t = T.min...
January 13, 2023
Learn »
...T, size_t n)
{
    T[n] impl;
    alias impl this;

    /**
     * Per-element unary operations.
     */
    Vec...
145 146 147 148 149 150 151 152 153 154 155
Next ›   Last »