345 template <
typename TFloatType1,
typename TFloatType2>
352 template <
typename TFloatType1,
typename TFloatType2>
359 template <
typename TFloatType1,
typename TFloatType2>
366 template <
typename TFloatType1,
typename TFloatType2>
373 template <
typename TFloatType1,
typename TFloatType2>
383 template <
typename TFloatType,
typename TIntType>
393 template <
typename TIntType,
typename TFloatType>
403 template <
typename TSignedInt,
typename TUn
signedInt>
407 if (signedVariable < 0)
415 return signedVariable ==
static_cast<TSignedInt
>(unsignedVariable);
421 template <
typename TUn
signedInt,
typename TSignedInt>
431 template <
typename TIntegerType1,
typename TIntegerType2>
442template <
bool TInput1IsIntger,
bool TInput1IsSigned,
bool TInput2IsInteger,
bool TInput2IsSigned>
457struct AlmostEqualsFunctionSelector<false, true, true, true>
464struct AlmostEqualsFunctionSelector<false, true, true, false>
471struct AlmostEqualsFunctionSelector<true, false, false, true>
514template <
typename TInputType1,
typename TInputType2>
515struct AlmostEqualsScalarImplementer
517 static constexpr bool TInputType1IsInteger = std::is_integral_v<TInputType1>;
518 static constexpr bool TInputType1IsSigned = std::is_signed_v<TInputType1>;
519 static constexpr bool TInputType2IsInteger = std::is_integral_v<TInputType2>;
520 static constexpr bool TInputType2IsSigned = std::is_signed_v<TInputType2>;
522 using SelectedVersion =
typename AlmostEqualsFunctionSelector<TInputType1IsInteger,
524 TInputType2IsInteger,
525 TInputType2IsSigned>::SelectedVersion;
531template <
typename TScalarType1,
typename TScalarType2>
533AlmostEqualsScalarComparer(TScalarType1 x1, TScalarType2 x2)
535 return AlmostEqualsScalarImplementer<TScalarType1, TScalarType2>::SelectedVersion::
536 template AlmostEqualsFunction<TScalarType1, TScalarType2>(x1, x2);
543struct AlmostEqualsScalarVsScalar
545 template <
typename TScalarType1,
typename TScalarType2>
547 AlmostEqualsFunction(TScalarType1 x1, TScalarType2 x2)
549 return AlmostEqualsScalarComparer(x1, x2);
555struct AlmostEqualsComplexVsComplex
557 template <
typename TComplexType1,
typename TComplexType2>
559 AlmostEqualsFunction(TComplexType1 x1, TComplexType2 x2)
561 return AlmostEqualsScalarComparer(x1.real(), x2.real()) && AlmostEqualsScalarComparer(x1.imag(), x2.imag());
568struct AlmostEqualsScalarVsComplex
570 template <
typename TScalarType,
typename TComplexType>
572 AlmostEqualsFunction(TScalarType scalarVariable, TComplexType complexVariable)
578 return AlmostEqualsScalarComparer(scalarVariable, complexVariable.real());
582struct AlmostEqualsComplexVsScalar
584 template <
typename TComplexType,
typename TScalarType>
586 AlmostEqualsFunction(TComplexType complexVariable, TScalarType scalarVariable)
588 return AlmostEqualsScalarVsComplex::AlmostEqualsFunction(scalarVariable, complexVariable);
595template <
bool T1IsComplex,
bool T2IsComplex>
596struct AlmostEqualsComplexChooser
598 using ChosenVersion = AlmostEqualsScalarVsScalar;
602struct AlmostEqualsComplexChooser<true, true>
604 using ChosenVersion = AlmostEqualsComplexVsComplex;
608struct AlmostEqualsComplexChooser<false, true>
610 using ChosenVersion = AlmostEqualsScalarVsComplex;
614struct AlmostEqualsComplexChooser<true, false>
616 using ChosenVersion = AlmostEqualsComplexVsScalar;
624template <
typename T1,
typename T2>
625struct AlmostEqualsComplexImplementer
627 static constexpr bool T1IsComplex = NumericTraits<T1>::IsComplex;
628 static constexpr bool T2IsComplex = NumericTraits<T2>::IsComplex;
630 using ChosenVersion =
typename AlmostEqualsComplexChooser<T1IsComplex, T2IsComplex>::ChosenVersion;