These are tr1 methods. Their idea of 'bucket' doesn't map well to what we do. We just say every bucket has 0 or 1 items in it.
| 2640 | // These are tr1 methods. Their idea of 'bucket' doesn't map well to |
| 2641 | // what we do. We just say every bucket has 0 or 1 items in it. |
| 2642 | size_type bucket_size(size_type i) const |
| 2643 | { |
| 2644 | return (size_type)(begin(i) == end(i) ? 0 : 1); |
| 2645 | } |
| 2646 | |
| 2647 | private: |
| 2648 | // Because of the above, size_type(-1) is never legal; use it for errors |
no test coverage detected