Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

You can, if you abuse C++ enough. I needed this very thing for a custom DSL.

    struct PolyReturn {
      const int value;
      operator int() const { return value; }
      operator bool() const { return value > 0; }
    };

https://cppinsights.io/s/f0b9976f


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: