46inline scalar
operator+(
const scalar& t,
const one&)
noexcept
51inline scalar
operator+(
const one&,
const scalar& t)
noexcept
56inline scalar
operator-(
const scalar& t,
const one&)
noexcept
61inline scalar
operator-(
const one&,
const scalar& t)
noexcept
72inline constexpr const Type&
operator*(
const Type& val,
const one&)
noexcept
78inline constexpr const Type&
operator*(
const one&,
const Type& val)
noexcept
84inline constexpr const Type&
operator&(
const one&,
const Type& val)
noexcept
97 return Type(scalar(1)/val);
101inline constexpr const Type&
operator/(
const Type& val,
const one&)
noexcept
106inline constexpr const one&
min(
const one& o,
const one&)
noexcept
112inline Type
min(
const one&,
const Type& t)
noexcept
114 return Type(
min(scalar(1), t));
118inline Type
min(
const Type& t,
const one&)
noexcept
120 return Type(
min(t, scalar(1)));
123inline constexpr const one&
max(
const one& o,
const one&)
noexcept
129inline Type
max(
const one&,
const Type& t)
noexcept
131 return Type(
max(scalar(1), t));
135inline Type
max(
const Type& t,
const one&)
noexcept
137 return Type(
max(t, scalar(1)));
A class representing the concept of 1 (one) that can be used to avoid manipulating objects known to b...
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)
tmp< GeometricField< Type, faPatchField, areaMesh > > operator&(const faMatrix< Type > &, const DimensionedField< Type, areaMesh > &)
label min(const labelHashSet &set, label minValue=labelMax)
Find the min value in labelHashSet, optionally limited by second argument.