| 76 | |
| 77 | bool operator()() const FL_NOEXCEPT { return !empty(); } |
| 78 | bool operator!() const FL_NOEXCEPT { return empty(); } |
| 79 | |
| 80 | // Explicit conversion to bool for contextual boolean evaluation |
| 81 | explicit operator bool() const FL_NOEXCEPT { return !empty(); } |