Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2017-2020 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::zero
Description
A class representing the concept of 0 (zero) that can be used to avoid
manipulating objects known to be \em zero at compile-time.
It is also used for tagged dispatch.
zero.C
SeeAlso
Foam::one
\*---------------------------------------------------------------------------*/
#ifndef zero_H
#define zero_H
Henry Weller
committed
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
class Istream;
class Ostream;
/*---------------------------------------------------------------------------*\
\*---------------------------------------------------------------------------*/
class zero
{
public:
Henry Weller
committed
typedef zero value_type;
class null;
constexpr zero() noexcept {}
//- Construct from Istream consumes no content.
explicit constexpr zero(Istream&) noexcept {}
//- Return false (0) for bool
constexpr operator bool() const noexcept
{
return false;
}
//- Return 0 for label
constexpr operator label() const noexcept
{
return 0;
}
//- Return 0 for float
constexpr operator float() const noexcept
{
return 0;
}
//- Return 0 for double
constexpr operator double() const noexcept
};
/*---------------------------------------------------------------------------*\
Class zero::null Declaration
\*---------------------------------------------------------------------------*/
//- A zero class with a null output adapter.
class zero::null
:
public zero
{
public:
typedef null value_type;
//- A static zero::null for dereferencing as a dummy element
static null dummy;
//- Null constructible
constexpr null() noexcept {}
//- Construct from Istream consumes no content.
explicit constexpr null(Istream&) noexcept {}
Henry Weller
committed
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
static constexpr const zero Zero;
// IOstream Operators
//- Read from Istream consumes no content
inline constexpr Istream& operator>>(Istream& is, zero&) noexcept
{
return is;
}
//- Write to Ostream emits no content
inline constexpr Ostream& operator<<(Ostream& os, const zero::null&) noexcept
{
return os;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Global Operators, Functions
Henry Weller
committed
#include "zeroI.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //