* Returns an iterator referring to the `past-the-end` element in the Vector container. * The past-the-end element is the theoretical element that would follow the last element in the Vector. * It does not point to any element, and thus shall not be dereferenced. */
| 75 | * It does not point to any element, and thus shall not be dereferenced. |
| 76 | */ |
| 77 | iterator end() { return _data.end(); } |
| 78 | /** |
| 79 | * Returns iterator referring to the `past-the-end` element in the Vector container. |
| 80 | * The past-the-end element is the theoretical element that would follow the last element in the Vector. |
no outgoing calls
no test coverage detected