| 265 | #endif |
| 266 | |
| 267 | BOOST_UBLAS_INLINE |
| 268 | reference insert_element (size_type i, const_reference t) |
| 269 | { |
| 270 | BOOST_UBLAS_CHECK (i < N, bad_index ()); |
| 271 | return (data_ [i] = t); |
| 272 | } |
| 273 | BOOST_UBLAS_INLINE |
| 274 | void erase_element (size_type i) |
| 275 | { |
no outgoing calls
no test coverage detected