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

Method Visit

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

Source from the content-addressed store, hash-verified

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