MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / for_each

Function for_each

extra/yassl/taocrypt/mySTL/algorithm.hpp:46–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44
45template<typename InIter, typename Func>
46Func for_each(InIter first, InIter last, Func op)
47{
48 while (first != last) {
49 op(*first);
50 ++first;
51 }
52 return op;
53}
54
55
56template<typename T>

Callers 7

~CertManagerMethod · 0.85
~CertificateRequestMethod · 0.85
bufferedDataMethod · 0.85
flushBufferMethod · 0.85
~SessionsMethod · 0.85
~SSL_CTXMethod · 0.85
~BuffersMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected