max_size(const Alloc& a): Returns a.max_size() if possible. If not possible, returns std::numeric_limits ::max() / sizeof(value_type)
| 1518 | // Returns a.max_size() if possible. If not possible, returns |
| 1519 | // std::numeric_limits<size_type>::max() / sizeof(value_type) |
| 1520 | static size_type max_size(const Alloc& a) { return max_size_impl(0, a); } |
| 1521 | |
| 1522 | // select_on_container_copy_construction(const Alloc& a): |
| 1523 | // Returns a.select_on_container_copy_construction() if possible. |