Search

March 30
Issues »
...Error: non-constant nested delegate literal expression `__lambda2`'):

```
struct ExistenceChecker
{
    bool delegate() checkExistenceFn;
}

ExistenceChecker makeExistenceChecker...
March 30
Issues »
...the bug:

```d
struct ExistenceChecker
{
    ///Optional.
    bool delegate() checkExistenceFn;

}
ExistenceChecker makeExistenceChecker(string gemName)
{
    return ExistenceChecker...
March 30
Issues »
...Issue ID: 24469
           Summary: non-constant nested delegate literal expression -
                    Error on delegates causing memory...
March 18
Learn »
...argument).

My code:

```d
	int opApply(int delegate(Variant) foreachblock) const {
		int result = 0;
		foreach...
March 18
DIP Development »
...d
struct S(+T){
    void foo(void delegate(T) callback){}
}
```

The common type of `S...
March 15
Learn »
...k];
		return newd;
	}
	void toString(scope void delegate(const(char)[]) sink, FormatSpec!char fmt) {
		put...
March 12
Learn »
...type `void delegate(StreamSocketFD, IOStatus status, ulong bytes_read)` to parameter `void delegate(StreamSocketFD, IOStatus...
March 08
Learn »
...Or:

```d
class Map {
	Tile[] tiles;
	Tile delegate(string params) factory;

	this() {
        factory = (string params...
February 20, 2024
General »
...run-time systems. So programmers can automatically delegate much in many different ways and have...
February 19, 2024
Genel »
...saat");
   saat.setLabel = "07:10";
   pencere.addOnHide( delegate void(Widget çıkış){ Main.quit(); } );
   pencere.showAll...
11 12 13 14 15 16 17 18 19 20 21 22
Next ›   Last »