elvis-operator Questions
14
Solved
Can someone explain the differences between ternary operator shorthand (?:) and null coalescing operator (??) in PHP?
When do they behave differently and when in the same way (if that even happens)...
Matador asked 2/1, 2016 at 22:23
4
Solved
The ternary operator in many languages works like so:
x = f() ? f() : g()
Where if f() is truthy then x is assigned the value of f(), otherwise it is assigned the value of g(). However, some lan...
Flattie asked 15/2, 2018 at 17:31
1
Solved
I realized recently that you can use the ternary operator in GCC and clang without a middle (?: or ? : works) and it will insert the first expression into the middle:
// outputs 2
cout <&...
Naman asked 1/1, 2016 at 20:22
1
© 2022 - 2024 — McMap. All rights reserved.