func(){
if() {
} else {
}
}can be beautifully converted to
func(){
if() {
return;
}
// Write the else code here.
}The reduced indentation gave a weird sense of relaxation. It was such a neat little trick.
What about you guys. Any common tricks which everyone can use.
int i = 10;
bool is_10 = (i === 10) ? TRUE : FALSE;