Skip to content

Instantly share code, notes, and snippets.

@dannvix
Last active August 29, 2015 14:15
Show Gist options
  • Save dannvix/b68b05455c862c23dbd8 to your computer and use it in GitHub Desktop.
Save dannvix/b68b05455c862c23dbd8 to your computer and use it in GitHub Desktop.
Playing with C++11. Inspired by https://github.com/klmr/named-operator
#include <iostream>
template <typename lhs_t, typename func_t>
inline func_t operator > (lhs_t const &lhs, func_t rhs) {
return rhs;
}
template <typename rhs_t, typename func_t>
inline auto operator < (func_t const &lhs, rhs_t const &rhs) -> decltype(lhs())
{
return lhs();
}
int main (void) {
auto __ = [](){return "!!(0>__<0)";};
std::cout << (!!0>__<0) << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment