MCPcopy Create free account
hub / github.com/apache/arrow / std_find

Function std_find

cpp/src/arrow/acero/asof_join_node.cc:77–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75
76template <typename T, typename V = typename T::value_type>
77inline typename T::const_iterator std_find(const T& container, const V& val) {
78 return std::find(container.begin(), container.end(), val);
79}
80
81template <typename T, typename V = typename T::value_type>
82inline bool std_has(const T& container, const V& val) {

Callers 4

std_hasFunction · 0.70
std_indexFunction · 0.70
InputReceivedMethod · 0.70
InputFinishedMethod · 0.70

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected