54 template<
class T,
unsigned Size>
class FixedList;
56 template<
class T,
unsigned Size>
57 Istream&
operator>>(Istream&, FixedList<T, Size>&);
59 template<
class T,
unsigned Size>
60 Ostream& operator<<(Ostream&, const FixedList<T, Size>&);
62 template<
class T>
class UList;
63 template<
class T>
class SLList;
70 template<
class T,
unsigned Size>
74 StaticAssert(Size && Size <= INT_MAX);
86 template<
class HashT=Hash<T> >
139 inline label
fcIndex(
const label i)
const;
143 inline label
rcIndex(
const label i)
const;
149 inline const T*
cdata()
const;
160 inline void checkStart(
const label start)
const;
173 inline void resize(
const label);
177 inline void setSize(
const label);
295 inline label
size()
const;
301 inline bool empty()
const;
318 bool operator<(const FixedList<T, Size>&)
const;
324 bool operator<=(const FixedList<T, Size>&)
const;
333 friend Istream&
operator>> <
T, Size>
337 friend Ostream& operator<< <T, Size>