Re: [deal.II] AlignedVector set at index

2021-01-07 Thread Wolfgang Bangerth
Zachary, Ideally I would like to create an AlignedVector with a begin and end and then push_back only to those indices within those bounds. Is there a way to accomplish this? for (auto x=begin; x!=end; ++x) my_vec.push_back (*x); I assume the push_back function works similar to

[deal.II] AlignedVector set at index

2021-01-06 Thread Zachary 42!
Hi everyone, Ideally I would like to create an AlignedVector with a begin and end and then push_back only to those indices within those bounds. Is there a way to accomplish this? I assume the push_back function works similar to std::vector and starts the index count at zero, I would like to