Return the maximum length of the list.
| 172 | |
| 173 | // Return the maximum length of the list. |
| 174 | size_t max_length() const { |
| 175 | return max_length_; |
| 176 | } |
| 177 | |
| 178 | // Set the maximum length of the list. If 'new_max' > length(), the |
| 179 | // client is responsible for removing objects from the list. |
no outgoing calls
no test coverage detected