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

Function FillScalarScratchSpace

cpp/src/arrow/scalar.cc:568–571  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

566
567template <typename T, size_t N>
568void FillScalarScratchSpace(void* scratch_space, const T (&arr)[N]) {
569 static_assert(sizeof(arr) <= internal::kScalarScratchSpaceSize);
570 std::memcpy(scratch_space, arr, sizeof(arr));
571}
572
573} // namespace
574

Callers 1

FillScratchSpaceMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected