55 template<
typename dtype>
56 dtype
fmin(dtype inValue1, dtype inValue2)
noexcept
62 [](
const dtype value1,
const dtype value2)
noexcept ->
bool {
return value1 < value2; });
78 template<
typename dtype>
81 return broadcast::broadcaster<dtype>(inArray1,
83 [](dtype inValue1, dtype inValue2)
noexcept -> dtype
84 {
return fmin(inValue1, inValue2); });
101 template<
typename dtype>
105 return fmin(inArray, inArray2);
122 template<
typename dtype>
125 return fmin(inArray, inScalar);
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition: StaticAsserts.hpp:56
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:139
Definition: Cartesian.hpp:40
NdArray< dtype > min(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: min.hpp:44
dtype fmin(dtype inValue1, dtype inValue2) noexcept
Definition: fmin.hpp:56