! \brief This constructor builds a \p random_iterator using a specified seed. * \param seed The seed initial value used to generate the random sequence. */
| 105 | * \param seed The seed initial value used to generate the random sequence. |
| 106 | */ |
| 107 | random_iterator(const size_t seed = 0) |
| 108 | : random_counting_iterator(CountingIterator(0), IndexFunctor(seed)) {} |
| 109 | |
| 110 | /*! \brief This method returns an iterator pointing to the beginning of |
| 111 | * this random sequence of entries. |
nothing calls this directly
no outgoing calls
no test coverage detected