Fills the array with sequentially increasing values.
| 269 | |
| 270 | // Fills the array with sequentially increasing values. |
| 271 | void FillIota(const T& value) { |
| 272 | std::iota(&values_[0], &values_[0] + num_elements(), value); |
| 273 | } |
| 274 | |
| 275 | // Fills the array with a repeating sequence: |
| 276 | // [value, value + 1, ..., value + length - 1, value, ... ] |
no outgoing calls