17 #ifndef __itkFixedArray_txx
18 #define __itkFixedArray_txx
30 template <
typename TValueType,
unsigned int VLength>
39 template <
typename TValueType,
unsigned int VLength>
43 for(
Iterator i = Begin(); i != End(); ++i)
54 template <
typename TValueType,
unsigned int VLength>
60 while( i != this->End() )
72 template <
typename TValueType,
unsigned int VLength>
77 if(r == m_InternalArray)
return *
this;
80 while( i != this->End() )
91 template <
typename TValueType,
unsigned int VLength>
99 while( i != this->End() )
115 template <
typename TValueType,
unsigned int VLength>
127 template <
typename TValueType,
unsigned int VLength>
139 template <
typename TValueType,
unsigned int VLength>
144 return Iterator(m_InternalArray+VLength);
151 template <
typename TValueType,
unsigned int VLength>
163 template <
typename TValueType,
unsigned int VLength>
175 template <
typename TValueType,
unsigned int VLength>
187 template <
typename TValueType,
unsigned int VLength>
199 template <
typename TValueType,
unsigned int VLength>
211 template <
typename TValueType,
unsigned int VLength>
223 template <
typename TValueType,
unsigned int VLength>
229 while( i != this->End() )
239 template <
typename TValueType,
unsigned int VLength>
249 template <
typename TValueType,
unsigned int VLength>
250 std::ostream & operator<<(std::ostream &os, const FixedArray<TValueType,VLength> &arr)
259 for (
int i=0; i < static_cast<int>(VLength) - 1; ++i)
261 os << arr[i] <<
", ";
263 os << arr[VLength-1];