Thoughts about D

rikki cattermole rikki at cattermole.co.nz
Mon Nov 27 02:36:52 UTC 2017


On 27/11/2017 12:14 AM, IM wrote:

snip

> - ‎D is very verbose. It requires a lot of typing. Look at how long 
> 'immutable' is. Very often that I find myself tagging my methods with 
> something like 'final override nothrow @safe @nogc ...' etc.

There be solutions here!

struct Foo {
	final nothrow @safe @nogc {
		void a() {}
		void b() {}
	}
}


More information about the Digitalmars-d mailing list