Search

July 25
DIP Ideas »
...int i) $(q);
        abstract void test3(string str) $(q);
    }.text);
}
```

```d
class C(bool const...
July 23
DIP Ideas »
...i);}
                abstract void test3(string str)const{test3_impl(this, str);}
            }
            else{
                abstract void test1...
July 23
DIP Ideas »
...foo(int i);
		abstract void foo(string str);
	}
	
	alias FooThis = const(C);	//can be conditionaly...
July 22
General »
...name = dubFile["name"].str;
    foreach(e; dubFile["versions"].array)
    {
        if (e.str == "flobber")
            result.flobber...
July 03
Learn »
...void append(string str)
        {
            buffer[pos .. pos + str.length] = str[];
            pos += str.length;
        }

        append("void...
July 01
Learn »
...mixin template implement()
{
    mixin("struct " ~ str);

    mixin("{");

    immutable string str = "T";

    mixin("}");
}
```

It's not...
July 01
Learn »
...void append(string str)
    {
        buffer[pos .. pos + str.length] = str[];
        pos += str.length;
    }

    append("void...
June 27
General »
...string name;
	Person friend;
	this(string str) {
		this.name = str;
		allPeople[name] = this;
	}

	@Proxy:
	Person...
June 24
Issues »
...safe
{
    import std.stdio;
    f((string str) { writeln(str); return 0; });
}
```

For opApply, for some...
June 04
Announce »
...void @__assert_fail(ptr @.str, ptr @.str.8, i32 8860, ptr @.str.24) #2, !dbg...
1 2 3 4 5
Next ›   Last »