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

Method next

cpp/src/arrow/acero/test_util_internal.h:147–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

145 public:
146 explicit Random64Bit(int32_t seed) : rng_(seed) {}
147 uint64_t next() { return dist_(rng_); }
148 template <typename T>
149 inline T from_range(const T& min_val, const T& max_val) {
150 return static_cast<T>(min_val + (next() % (max_val - min_val + 1)));

Callers 5

ReadNextMethod · 0.45
ReadBatchMethod · 0.45
RandomMethod · 0.45
GenRandomRecordsFunction · 0.45
TestBloomSmallFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected