! This constructor creates a constant_array with a given * size starting and value * \param size The number of entries. * \param value The constant value to repeat. */
| 631 | * \param value The constant value to repeat. |
| 632 | */ |
| 633 | constant_array(size_type size, ValueType value) |
| 634 | : Parent(iterator(value), iterator(value) + size) {} |
| 635 | }; |
| 636 | |
| 637 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected