MCPcopy Create free account
hub / github.com/audacity/audacity / end

Function end

libraries/lib-utility/PackedArray.h:159–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157//! Enables range-for
158template<typename Type, template<typename> typename BaseDeleter>
159inline auto end(const Ptr<Type, BaseDeleter> &p)
160{
161 auto result = begin(p);
162 if (result)
163 result += Count(p);
164 return result;
165}
166
167}
168

Callers 2

compareSequencesFunction · 0.50
CompositeTest.cppFile · 0.50

Calls 2

beginFunction · 0.70
CountFunction · 0.70

Tested by 1

compareSequencesFunction · 0.40