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

Function ForEachTupleMemberImpl

cpp/src/arrow/util/reflection_internal.h:43–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41
42template <size_t... I, typename... T, typename Fn>
43void ForEachTupleMemberImpl(const std::tuple<T...>& tup, Fn&& fn,
44 std::index_sequence<I...>) {
45 (..., fn(std::get<I>(tup), I));
46}
47
48template <typename... T, typename Fn>
49void ForEachTupleMember(const std::tuple<T...>& tup, Fn&& fn) {

Callers 1

ForEachTupleMemberFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected