45inline auto subvector(Index start_id, Index end_id)
const
47 assert_release(end_id >= 0 && start_id >= 0);
48 assert_release(end_id < this->size() && start_id <= end_id);
49 return this->segment(start_id,end_id-start_id+1);
auto subvector(Index start_id, Index end_id) const
Extracts a subvector from the current vector.
Definition codac2_MatrixBase_addons_VectorBase.h:45