MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / find_end

Class find_end

include/win/boost/lambda/algorithm.hpp:79–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77// find_end ---------------------------------
78
79struct find_end {
80
81 template <class Args>
82 struct sig {
83 typedef typename boost::remove_const<
84 typename boost::tuples::element<1, Args>::type
85 >::type type;
86 };
87
88 template <class A, class C>
89 A
90 operator()(A a, A b, C c, C d) const
91 { return ::std::find_end(a, b, c, d); }
92
93 template <class A, class C, class E>
94 A
95 operator()(A a, A b, C c, C d, E e) const
96 { return ::std::find_end(a, b, c, d, e); }
97
98};
99
100// find_first_of ---------------------------------
101

Callers 3

operator()Method · 0.70
rfindFunction · 0.50
type find_endMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected