Search

April 29
DIP Development »
...have a (non-nested) template accepting multiple delegate types with different but variadic parameter lists...
April 28
Issues »
...auto ref` was added, when the function/delegate keyword starting forms can already handle those.

--
April 28
DIP Development »
...trying to do is make function and delegate pointers being able to be declared in...
April 26
Issues »
...of type suffixes are function pointer and delegate
types:
```d
void f(Ts...)(Ts function...
April 25
DIP Development »
...that lack this are function pointer and delegate types that return by reference and/or...
April 24
Learn »
...private List iter;

  int opApply(scope int delegate(Node* t) dg)
  {
    while(auto current = iter...
April 23
Issues »
...an explicit delegate.

//////////////// test.d ////////////////
@safe:

void delegate() later;

void lazyFun(void delegate() @safe expr...
April 23
Issues »
...redo the lazy function as an explicit delegate. If the behavior is correct, then the...
April 23
Learn »
...this.iter = iter; }
	int opApply(scope int delegate(T* t) dg) {
		while (auto current = next...
April 11
DIP Ideas »
...outside the world the GC stops, but delegate everything possible to normal GC-controlled threads.
9 10 11 12 13 14 15 16 17 18 19 20
Next ›   Last »