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

Method Call

cpp/src/arrow/compute/kernels/base_arithmetic_internal.h:187–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185struct Subtract {
186 template <typename T, typename Arg0, typename Arg1>
187 static constexpr enable_if_floating_value<T> Call(KernelContext*, Arg0 left, Arg1 right,
188 Status*) {
189 static_assert(std::is_same<T, Arg0>::value && std::is_same<T, Arg1>::value, "");
190 return left - right;
191 }
192
193 template <typename T, typename Arg0, typename Arg1>
194 static constexpr enable_if_unsigned_integer_value<T> Call(KernelContext*, Arg0 left,

Callers

nothing calls this directly

Calls 1

SafeSignedSubtractFunction · 0.85

Tested by

no test coverage detected