with for reduced bloat

Michelle Long HappyDance321 at gmail.com
Mon Dec 24 02:04:26 UTC 2018


enum X { A, B, C}

void foo(X x);

foo(X.A);


vs


enum X { A, B, C}

void foo(with X x);

foo(A);






More information about the Digitalmars-d mailing list