| 189 | } |
| 190 | |
| 191 | reference at(size_type index) |
| 192 | { |
| 193 | if(index >= N){ |
| 194 | BOOST_THROW_EXCEPTION(std::out_of_range("index out of range")); |
| 195 | } |
| 196 | |
| 197 | return operator[](index); |
| 198 | } |
| 199 | |
| 200 | const_reference at(size_type index) const |
| 201 | { |
no outgoing calls