Search

January 14, 2023
Issues »
...deduction with auto const ref
                    Args... and delegate
           Product: D
           Version: D2
          Hardware: All
                OS...
January 11, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=23621

Marcelo Silva Nascimento Mancini <msnmancini@hotmail...
January 11, 2023
Issues »
...import std.stdio;
int add(int delegate() a, int delegate() b){return a()+b();}
int...
January 07, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=11316

Paul Backus <snarwin+bugzilla@gmail.com...
January 07, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=11316

--- Comment #3 from Paul Backus <snarwin...
January 06, 2023
Announce »
...inlineConcatTest = [1, 2] ~ [3, 4];

	auto dg = delegate()
	{
		writeln(inlineConcatTest[0], f[1]);
	};
	dg();
	B...
January 05, 2023
Learn »
...or when the property function returns a delegate.  Not worth the trouble, I say.  Just...
January 05, 2023
Learn »
...where the loop variable resides, thus every delegate from every loop iteration will see the...
January 05, 2023
Learn »
Ah, I think you ran into that delegate bug

# 🥲

Try this code in it...
January 05, 2023
Learn »
...is a `Button` class, which contains a delegate called `onButtonClick` which is called when the...
39 40 41 42 43 44 45 46 47 48 49 50
Next ›   Last »