| 204 | } |
| 205 | |
| 206 | reference at(size_type index) |
| 207 | { |
| 208 | if(index >= N){ |
| 209 | BOOST_THROW_EXCEPTION(std::out_of_range("index out of range")); |
| 210 | } |
| 211 | |
| 212 | return operator[](index); |
| 213 | } |
| 214 | |
| 215 | const_reference at(size_type index) const |
| 216 | { |
no outgoing calls