mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- uniform use of reinterpret_cast<foo*>(0) instead of
reinterpret_cast<foo*>(NULL)
- make all static null() members inline since they are really only a cast:
"*reinterpret_cast<foo*>(0)"
130 lines
3.4 KiB
C
130 lines
3.4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "FixedList.H"
|
|
#include "ListLoopM.H"
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
// * * * * * * * * * * * * * * STL Member Functions * * * * * * * * * * * * //
|
|
|
|
template<class T, Foam::label Size>
|
|
void Foam::FixedList<T, Size>::swap(FixedList<T, Size>& a)
|
|
{
|
|
List_ACCESS(T, (*this), vp);
|
|
List_ACCESS(T, a, ap);
|
|
T tmp;
|
|
List_FOR_ALL((*this), i)
|
|
tmp = List_ELEM((*this), vp, i);
|
|
List_ELEM((*this), vp, i) = List_ELEM(a, ap, i);
|
|
List_ELEM(a, ap, i) = tmp;
|
|
List_END_FOR_ALL
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
template<class T, Foam::label Size>
|
|
bool Foam::FixedList<T, Size>::operator==(const FixedList<T, Size>& a) const
|
|
{
|
|
bool equal = true;
|
|
|
|
List_CONST_ACCESS(T, (*this), vp);
|
|
List_CONST_ACCESS(T, (a), ap);
|
|
|
|
List_FOR_ALL((*this), i)
|
|
equal = equal && (List_ELEM((*this), vp, i) == List_ELEM((a), ap, i));
|
|
List_END_FOR_ALL
|
|
|
|
return equal;
|
|
}
|
|
|
|
|
|
template<class T, Foam::label Size>
|
|
bool Foam::FixedList<T, Size>::operator!=(const FixedList<T, Size>& a) const
|
|
{
|
|
return !operator==(a);
|
|
}
|
|
|
|
|
|
template<class T, Foam::label Size>
|
|
bool Foam::FixedList<T, Size>::operator<(const FixedList<T, Size>& a) const
|
|
{
|
|
for
|
|
(
|
|
const_iterator vi = begin(), ai = a.begin();
|
|
vi < end() && ai < a.end();
|
|
vi++, ai++
|
|
)
|
|
{
|
|
if (*vi < *ai)
|
|
{
|
|
return true;
|
|
}
|
|
else if (*vi > *ai)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (Size < a.Size)
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
template<class T, Foam::label Size>
|
|
bool Foam::FixedList<T, Size>::operator>(const FixedList<T, Size>& a) const
|
|
{
|
|
return a.operator<(*this);
|
|
}
|
|
|
|
|
|
template<class T, Foam::label Size>
|
|
bool Foam::FixedList<T, Size>::operator<=(const FixedList<T, Size>& a) const
|
|
{
|
|
return !operator>(a);
|
|
}
|
|
|
|
|
|
template<class T, Foam::label Size>
|
|
bool Foam::FixedList<T, Size>::operator>=(const FixedList<T, Size>& a) const
|
|
{
|
|
return !operator<(a);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * IOStream operators * * * * * * * * * * * //
|
|
|
|
#include "FixedListIO.C"
|
|
|
|
// ************************************************************************* //
|