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

Function begin

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

Source from the content-addressed store, hash-verified

56
57template <typename C>
58constexpr auto begin(const C& c) -> decltype(c.begin())
59{
60 return c.begin();
61}
62
63template <typename C>
64constexpr auto begin(C& c) -> decltype(c.begin())

Callers 10

cbeginFunction · 0.70
cbeginMethod · 0.70
cbeginMethod · 0.70
TESTFunction · 0.50
TEST_FFunction · 0.50
TEST_PFunction · 0.50
MatchAndExplainMethod · 0.50
operator==Method · 0.50
iteratorClass · 0.50
container_itemClass · 0.50

Calls 1

beginMethod · 0.45

Tested by 4

TESTFunction · 0.40
TEST_FFunction · 0.40
TEST_PFunction · 0.40
operator==Method · 0.40