FixedArray::fill() Assigns the given `value` to all elements in the fixed array.
| 305 | // |
| 306 | // Assigns the given `value` to all elements in the fixed array. |
| 307 | void fill(const value_type& val) { std::fill(begin(), end(), val); } |
| 308 | |
| 309 | // Relational operators. Equality operators are elementwise using |
| 310 | // `operator==`, while order operators order FixedArrays lexicographically. |