xtd 0.2.0
Loading...
Searching...
No Matches

◆ resize() [1/2]

template<typename type_t >
virtual void xtd::collections::generic::list< type_t >::resize ( size_type  count)
inlinevirtual

Resizes the container to contain count elements, does nothing if count == size(). @param count The new size of the container. @remarks If the current size is greater thancount, the container is reduced to its firstcountelements. @remarks If the current size is less thancount`, additional default-inserted elements are appended.