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

Function Iota

cpp/src/arrow/util/range.h:32–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30/// Create a vector containing the values from start with length elements
31template <typename T>
32std::vector<T> Iota(T start, size_t length) {
33 std::vector<T> result(length);
34 std::iota(result.begin(), result.end(), start);
35 return result;
36}
37
38/// Create a vector containing the values from start up to stop
39template <typename T>

Callers 12

TEST_PFunction · 0.85
TEST_PFunction · 0.85
s3fs_benchmark.ccFile · 0.85
AllRowGroupsFactoryMethod · 0.85
ReadTableMethod · 0.85
ReadColumnMethod · 0.85
ReadRowGroupsMethod · 0.85
ReadRowGroupMethod · 0.85
GetRecordBatchReaderMethod · 0.85
DoRoundTripWithBatchesFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by 3

TEST_PFunction · 0.68
TEST_PFunction · 0.68
DoRoundTripWithBatchesFunction · 0.68