Lines Matching refs:elements
3 …ll the elements are copied to the new memory area, and the current memory area is reclaimed. **Vec…
33 | length | number | Yes| No| Number of elements in a vector (called container later).|
91 Inserts an element within the length range and moves its subsequent elements rightwards.
212 … on its index, removes the element after returning it, and moves its subsequent elements leftwards.
275 Removes from this container all of the elements within a range, including the element at the start …
302 Replaces all elements in this container with new elements, and returns the new ones.
340 Uses a callback to traverse the elements in this container and obtain their position indexes.
376 Sorts elements in this container.
410 …ns elements within a range in this container, including the element at the start position but not …
446 Clears all elements in this container and sets its length to **0**.
540 Checks whether this container is empty (contains no elements).
610 Uses commas (,) to concatenate elements in this container into a string.
635 Copies elements in this container into an array to overwrite elements of the same position indexes.
643 | array | Array<T> | Yes| Array to which the elements in the container will be copied.|