! * Returns an iterator pointing at the first element of the * collection. It does not allocate memory and its complexity is * @f$ O(1) @f$. */
| 107 | * @f$ O(1) @f$. |
| 108 | */ |
| 109 | IMMER_NODISCARD iterator begin() const { return impl_.data(); } |
| 110 | |
| 111 | /*! |
| 112 | * Returns an iterator pointing just after the last element of the |