Fills the array with the specified value.
| 264 | |
| 265 | // Fills the array with the specified value. |
| 266 | void Fill(const T& value) { |
| 267 | std::fill(&values_[0], &values_[0] + num_elements(), value); |
| 268 | } |
| 269 | |
| 270 | // Fills the array with sequentially increasing values. |
| 271 | void FillIota(const T& value) { |