MCPcopy Create free account
hub / github.com/0voice/cpp_new_features / main

Function main

cpp_11/003_rtti_rank.cpp:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include <type_traits>
3
4int main()
5{
6 std::cout << std::rank<int[1][2][3]>::value << '\n';
7 std::cout << std::rank<int[][2][3][4]>::value << '\n';
8 std::cout << std::rank<int>::value << '\n';
9}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected