A synonym for fill
| 176 | // assign one value to all elements |
| 177 | void assign (const T& value) { fill ( value ); } // A synonym for fill |
| 178 | void fill (const T& value) |
| 179 | { |
| 180 | std::fill_n(begin(),size(),value); |
| 181 | } |
| 182 | |
| 183 | // check range (may be private because it is static) |
| 184 | static BOOST_CONSTEXPR bool rangecheck (size_type i) { |
no test coverage detected