On 12/22/15 1:29 PM, David Nadlinger wrote:
---
ulong factorial(this n) {
return n <= 1 ? 1 : n * factorial(n - 1);
}
---
Am I missing some new feature here? What does the 'this' mean? -Steve
Steven Schveighoffer via Digitalmars-d-announce Tue, 22 Dec 2015 11:11:28 -0800
On 12/22/15 1:29 PM, David Nadlinger wrote:
---
ulong factorial(this n) {
return n <= 1 ? 1 : n * factorial(n - 1);
}
---
Am I missing some new feature here? What does the 'this' mean? -Steve