mirror of
https://github.com/boostorg/hof.git
synced 2026-01-21 04:52:20 +00:00
9 lines
216 B
C++
9 lines
216 B
C++
#include <boost/hof/lazy.hpp>
|
|
#include <boost/hof/placeholders.hpp>
|
|
#include <boost/hof/flip.hpp>
|
|
|
|
int main() {
|
|
auto i = (boost::hof::flip(boost::hof::_1 - boost::hof::_2) * boost::hof::_1)(3, 6);
|
|
(void)i;
|
|
}
|