Search

January 24, 2022
General »
...its parameter, or the outer function's return type, or the outer function's parameter...
January 19, 2022
Learn »
...just assemble slices of it in the outer block, like this:

	uint[][] createBoolMatrix(size_t...
January 19, 2022
Learn »
...n) {
		auto result = new uint[][n]; // allocate outer array
		foreach (ref row; result) {
			row = new...
January 17, 2022
General »
...more array elements per line in your outer array, let's save some space!" -- because...
December 26, 2021
Learn »
...d do the second bracket as the outer/first one is stripped out.

 I need...
December 23, 2021
General »
...functions
  with the context of the parent outer function).

  I haven't explored much about...
December 13, 2021
Issues »
...nested functions use inout qialifier of the outer function. Then an easy way to fix...
November 27, 2021
Issues »
...const. It works on Linux, because the outer const is already ignored for the mangling...
November 27, 2021
General »
...getArray(const ref this) { return a; }
```

The outer `const` can only apply to the return...
November 12, 2021
General »
...For a value reference type, with the outer type being ``const`` is equivalent to just...
7 8 9 10 11 12 13 14 15 16 17 18
Next ›   Last »