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

Function main

test/ext/std/array/orderable.cpp:18–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16constexpr auto array() { return std::array<int, sizeof...(i)>{{i...}}; }
17
18int main() {
19 auto int_arrays = hana::make_tuple(
20 array<>()
21 , array<0>()
22 , array<0, 1>()
23 , array<0, 1, 2>()
24 , array<0, 1, 2, 3>()
25 , array<0, 1, 2, 3, 4>()
26 );
27
28 hana::test::TestOrderable<hana::ext::std::array_tag>{int_arrays};
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected