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