! This constructor creates a counting_array with a given * size starting from a given initial value * \param size The number of entries * \param init The initial starting index to start counting */
| 581 | * \param init The initial starting index to start counting |
| 582 | */ |
| 583 | counting_array(size_type size, ValueType init = ValueType(0)) |
| 584 | : Parent(iterator(init), iterator(init) + size) {} |
| 585 | }; |
| 586 | |
| 587 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected