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

Function MakeMapIterator

cpp/src/arrow/util/iterator.h:460–462  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

458template <typename Fn, typename From = internal::call_traits::argument_type<0, Fn>,
459 typename To = internal::call_traits::return_type<Fn>>
460Iterator<To> MakeMapIterator(Fn map, Iterator<From> it) {
461 return Iterator<To>(MapIterator<Fn, From, To>(std::move(map), std::move(it)));
462}
463
464/// \brief Like MapIterator, but where the function can fail.
465template <typename Fn, typename From = internal::call_traits::argument_type<0, Fn>,

Callers 6

BatchesMethod · 0.85
MakeReaderGeneratorFunction · 0.85
MakeGeneratorMethod · 0.85
MakeGeneratorMethod · 0.85
MakeGeneratorMethod · 0.85
MakeGeneratorMethod · 0.85

Calls

no outgoing calls

Tested by 1

BatchesMethod · 0.68