Home | History | Annotate | Download | only in plugins

Lines Matching refs:SegmentReturnType

38 typedef VectorBlock<Derived> SegmentReturnType;
888 inline SegmentReturnType segment(Index start, Index n)
891 return SegmentReturnType(derived(), start, n);
919 inline SegmentReturnType head(Index n)
922 return SegmentReturnType(derived(), 0, n);
949 inline SegmentReturnType tail(Index n)
952 return SegmentReturnType(derived(), this->size() - n, n);