Search

August 15, 2022
Issues »
...S {
    int storage;
    int* ptr;

    this(int dummy) return scope {
        ptr = &storage;
    }

    int* get() return...
August 06, 2022
Learn »
...return *this; }

	inline xlcmplx& operator+() { return *this; } // dummy operator
	inline xlcmplx operator-() const { return xlcmplx...
July 22, 2022
General »
...ve used it is just using a dummy project to pull in vibe.d dependencies...
July 20, 2022
Learn »
...if (isArray!A)
    {
        size_t[] dummy;
        return isRectangular(a, dummy);
    }
    bool isRectangular(A)(A a...
June 15, 2022
General »
...like
```D
void nonScopeArgument(int* arg)
{ static int* dummy;
  if(false) dummy = arg;
}
```
. No thanks.
May 30, 2022
Issues »
...stdio;
struct S{
    S* ptr;
    this(int dummy) {ptr = &this;}
    this(this) {ptr = &this;}

    void...
May 30, 2022
Issues »
...d
    struct S {
        S* addr;
        this(int dummy) { this.addr = &this; }
        this(ref const S...
May 30, 2022
Issues »
...dmd:

    struct S {
        S* addr;
        this(int dummy) { this.addr = &this; }
        static S create() { return...
May 14, 2022
General »
...input,
             auto ref int optional_output = 0 /* dummy rvalue default */)
{
    writefln!"Input received: %s"(input...
April 26, 2022
Learn »
...class C {
	@nogc this(){}
	@nogc this(int dummy){};
	@nogc int[3] fixarr=new int[3...
1 2 3 4 5 6 7 8 9
Next ›   Last »