Hello,I think nullable condition operator and null coalescending operator should be a nice new features in D.
https://msdn.microsoft.com/library/dn986595.aspx https://msdn.microsoft.com/library/ms173224.aspx Same as operator `as` https://msdn.microsoft.com/library/cscsdfbt.aspx Why? Is better to write (variable as FooBar)?.callMethod(); than auto var = cast(FooBar)variable; if (var !is null) var.callMethod(); or auto x = (variable as FooBar)?.getRandomNumber() ?? 42;
