34 #if defined ( OGRE_GCC_VISIBILITY )
35 # pragma GCC visibility push(default)
38 #if defined ( OGRE_GCC_VISIBILITY )
39 # pragma GCC visibility pop
58 return FastHash((
const char*)&data,
sizeof(T), hashSoFar);
331 template <
typename T>
335 typedef std::vector<T, STLAllocator<T, GeneralAllocPolicy> >
VectorImpl;
379 return mList.begin();
388 return mList.rbegin();
408 return mList.const_iterator(n);
417 template <
class InputIterator>
438 return mList.front();
467 bool recalc = (pos !=
end());
476 template <
class InputIterator>
478 InputIterator f, InputIterator l)
480 mList.insert(pos, f, l);
486 mList.insert(pos, n, x);
523 bool operator<(const HashedVector<T>& b)
559 TRect( T
const & l, T
const & t, T
const & r, T
const & b )
636 std::ostream& operator<<(std::ostream& o, const TRect<T>& r)
638 o <<
"TRect<>(l:" << r.
left <<
", t:" << r.top <<
", r:" << r.right <<
", b:" << r.bottom <<
")";