Is true if sym is an l-value, false otherwise.
int i; string s; static assert(isLvalue!i); static assert(isLvalue!s); static assert(!isLvalue!13); static assert(!isLvalue!"a");
See Implementation
Is true if sym is an l-value, false otherwise.