Returns a const_reverse_iterator pointing to the last element in the container (i.e., its reverse beginning). */
| 103 | |
| 104 | /** Returns a const_reverse_iterator pointing to the last element in the container (i.e., its reverse beginning). */ |
| 105 | const_reverse_iterator crbegin() const { return _data.crbegin(); } |
| 106 | /** Returns a const_reverse_iterator pointing to the theoretical element preceding the first element in |
| 107 | * the container (which is considered its reverse end). |
| 108 | */ |
no outgoing calls
no test coverage detected