Return the maximum length of the list.
| 182 | |
| 183 | // Return the maximum length of the list. |
| 184 | size_t max_length() const { |
| 185 | return max_length_; |
| 186 | } |
| 187 | |
| 188 | // Set the maximum length of the list. If 'new_max' > length(), the |
| 189 | // client is responsible for removing objects from the list. |
no outgoing calls
no test coverage detected