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

Method Visit

cpp/src/arrow/ipc/feather.cc:542–551  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

540
541 template <typename T>
542 typename std::enable_if<
543 is_nested_type<T>::value || is_null_type<T>::value || is_decimal_type<T>::value ||
544 std::is_same<DictionaryType, T>::value || is_duration_type<T>::value ||
545 is_interval_type<T>::value || is_fixed_size_binary_type<T>::value ||
546 is_binary_view_like_type<T>::value || std::is_same<Date64Type, T>::value ||
547 std::is_same<Time64Type, T>::value || std::is_same<ExtensionType, T>::value,
548 Status>::type
549 Visit(const T& type) {
550 return Status::NotImplemented(type.ToString());
551 }
552
553 template <typename T>
554 typename std::enable_if<is_number_type<T>::value ||

Callers

nothing calls this directly

Calls 13

BytesForBitsFunction · 0.85
value_offsetsMethod · 0.80
NotImplementedFunction · 0.50
OKFunction · 0.50
ToStringMethod · 0.45
typeMethod · 0.45
valuesMethod · 0.45
dataMethod · 0.45
offsetMethod · 0.45
bit_widthMethod · 0.45
lengthMethod · 0.45
raw_value_offsetsMethod · 0.45

Tested by

no test coverage detected