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

Function ToLittleEndian

cpp/src/parquet/encoding_test.cc:1565–1571  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1563
1564template <typename c_type>
1565static std::vector<c_type> ToLittleEndian(const std::vector<c_type>& input) {
1566 std::vector<c_type> data(input.size());
1567 std::transform(input.begin(), input.end(), data.begin(), [](const c_type& value) {
1568 return ::arrow::bit_util::ToLittleEndian(value);
1569 });
1570 return data;
1571}
1572
1573std::shared_ptr<ColumnDescriptor> FLBAColumnDescriptor(int type_length) {
1574 auto node =

Callers 6

CloseEncryptedFileMethod · 0.70
WriteFileMetaDataFunction · 0.70
FlushValuesMethod · 0.70
AppendLevelsMethod · 0.70
LevelsToBitmapFunction · 0.70

Calls 3

sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected