45inline constexpr const Type&
operator+(
const Type& val,
const zero&)
noexcept
51inline constexpr const Type&
operator+(
const zero&,
const Type& val)
noexcept
62inline constexpr const Type&
operator-(
const Type& val,
const zero&)
noexcept
91inline constexpr zero
operator/(
const zero&,
const Type& val)
noexcept
105inline Type
min(
const zero&,
const Type& t)
107 return min(scalar(0), t);
111inline Type
min(
const Type& t,
const zero&)
113 return min(t, scalar(0));
122inline Type
max(
const zero&,
const Type& t)
124 return max(scalar(0), t);
128inline Type
max(
const Type& t,
const zero&)
130 return max(t, scalar(0));
A class representing the concept of 0 (zero) that can be used to avoid manipulating objects known to ...
tmp< faMatrix< Type > > operator-(const faMatrix< Type > &)
Unary negation.
label max(const labelHashSet &set, label maxValue=labelMin)
Find the max value in labelHashSet, optionally limited by second argument.
tmp< faMatrix< Type > > operator+(const faMatrix< Type > &, const faMatrix< Type > &)
tmp< faMatrix< Type > > operator*(const areaScalarField::Internal &, const faMatrix< Type > &)
dimensionedScalar operator/(const scalar s1, const dimensionedScalar &ds2)
label min(const labelHashSet &set, label minValue=labelMax)
Find the min value in labelHashSet, optionally limited by second argument.
static constexpr const zero Zero
Global zero (0).