MCPcopy Create free account
hub / github.com/boostorg/hana / main

Function main

example/functional/flip.cpp:15–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13};
14
15int main() {
16 BOOST_HANA_CONSTEXPR_CHECK(minus(3, 0) == 3 - 0);
17 BOOST_HANA_CONSTEXPR_CHECK(hana::flip(minus)(3, 0) == 0 - 3);
18
19 BOOST_HANA_CONSTEXPR_CHECK(minus(3, 0, 1) == 3 - 0 - 1);
20 BOOST_HANA_CONSTEXPR_CHECK(hana::flip(minus)(3, 0, 1) == 0 - 3 - 1);
21}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected