| 137 | } |
| 138 | |
| 139 | Url::Path::String |
| 140 | Url::Path::operator[](Segments::size_type ix) |
| 141 | { |
| 142 | Url::Path::String ret; |
| 143 | |
| 144 | _ensure_initialized(_owner); |
| 145 | _parser(); // Make sure the segments are loaded |
| 146 | if (ix < _segments.size()) { |
| 147 | ret._initialize(_segments[ix], this, ix); |
| 148 | } |
| 149 | |
| 150 | return ret; // RVO |
| 151 | } |
| 152 | |
| 153 | Url::Path |
| 154 | Url::Path::operator=(cripts::string_view path) |
nothing calls this directly
no test coverage detected