| 451 | } |
| 452 | |
| 453 | reference at(size_type index) |
| 454 | { |
| 455 | if(index >= size()){ |
| 456 | BOOST_THROW_EXCEPTION(std::out_of_range("index out of range")); |
| 457 | } |
| 458 | |
| 459 | return operator[](index); |
| 460 | } |
| 461 | |
| 462 | const_reference at(size_type index) const |
| 463 | { |
nothing calls this directly
no outgoing calls
no test coverage detected