Last active
August 29, 2015 14:15
-
-
Save dannvix/b68b05455c862c23dbd8 to your computer and use it in GitHub Desktop.
Playing with C++11. Inspired by https://github.com/klmr/named-operator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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