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

Function main

example/insert_range.cpp:17–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15
16
17int main() {
18 auto xs = hana::make_tuple("Hello"s, "world!"s);
19 BOOST_HANA_RUNTIME_CHECK(
20 hana::insert_range(xs, 1_c, hana::make_tuple(1, 2, 3)) == hana::make_tuple("Hello"s, 1, 2, 3, "world!"s)
21 );
22}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected