Adding the ?. null verification

Etienne via Digitalmars-d digitalmars-d at puremagic.com
Thu Jun 19 14:09:03 PDT 2014


On 2014-06-19 5:05 PM, Etienne wrote:
> : __traits(getMember, t, field), (t is null) ? true : false);


(t is null || fail) ? true : false


More information about the Digitalmars-d mailing list