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

Function EndiannessToString

cpp/src/arrow/type.cc:2260–2270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2258// Schema implementation
2259
2260std::string EndiannessToString(Endianness endianness) {
2261 switch (endianness) {
2262 case Endianness::Little:
2263 return "little";
2264 case Endianness::Big:
2265 return "big";
2266 default:
2267 DCHECK(false) << "invalid endianness";
2268 return "???";
2269 }
2270}
2271
2272class Schema::Impl {
2273 public:

Callers 1

ToStringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected