MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / end

Function end

3rd/wildcards/include/cx/iterator.hpp:88–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86
87template <typename C>
88constexpr auto end(const C& c) -> decltype(c.end())
89{
90 return c.end();
91}
92
93template <typename C>
94constexpr auto end(C& c) -> decltype(c.end())

Callers 7

cendFunction · 0.70
cendMethod · 0.70
cendMethod · 0.70
TESTFunction · 0.50
TEST_FFunction · 0.50
TEST_PFunction · 0.50
MatchAndExplainMethod · 0.50

Calls 1

endMethod · 0.45

Tested by 3

TESTFunction · 0.40
TEST_FFunction · 0.40
TEST_PFunction · 0.40