Report patch name instead of index in debug
[foam-extend-3.2.git] / src / foam / containers / Lists / List / ListI.H
blob1bc7c7b178aa392256b639febdc20a3108967ed2
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
28 template<class T>
29 inline Foam::List<T>::List()
33 template<class T>
34 inline Foam::autoPtr<Foam::List<T> > Foam::List<T>::clone() const
36     return autoPtr<List<T> >(new List<T>(*this));
40 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
42 template<class T>
43 inline const Foam::List<T>& Foam::List<T>::null()
45     return zero;
49 template<class T>
50 inline void Foam::List<T>::resize(const label newSize)
52     this->setSize(newSize);
56 template<class T>
57 inline void Foam::List<T>::resize(const label newSize, const T& a)
59     this->setSize(newSize, a);
63 template<class T>
64 inline T& Foam::List<T>::newElmt(const label i)
66     if (i >= this->size())
67     {
68         setSize(2*this->size());
69     }
71     return UList<T>::operator[](i);
75 template<class T>
76 inline void Foam::List<T>::size(const label n)
78     UList<T>::size_ = n;
82 template<class T>
83 inline Foam::label Foam::List<T>::size() const
85     return UList<T>::size_;
89 template<class T>
90 inline Foam::Xfer< Foam::List<T> > Foam::List<T>::xfer()
92     return xferMove(*this);
96 template<class T>
97 inline void Foam::List<T>::append(const UList<T>& lst)
99     if (this == &lst)
100     {
101         FatalErrorIn
102         (
103             "List<T>::append(const UList<T>&)"
104         )   << "attempted appending to self" << abort(FatalError);
105     }
107     label nextFree = this->size();
108     setSize(nextFree + lst.size());
110     forAll(lst, elemI)
111     {
112         this->operator[](nextFree++) = lst[elemI];
113     }
117 template<class T>
118 inline void Foam::List<T>::append(const UIndirectList<T>& lst)
120     label nextFree = this->size();
121     setSize(nextFree + lst.size());
123     forAll(lst, elemI)
124     {
125         this->operator[](nextFree++) = lst[elemI];
126     }
130 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
132 template<class T>
133 inline void Foam::List<T>::operator=(const T& t)
135     UList<T>::operator=(t);
139 // ************************************************************************* //