| 186 | |
| 187 | template <typename Container> |
| 188 | void RandomSource::shuffle(Container& container) { |
| 189 | size_t max = container.size(); |
| 190 | std::shuffle(container.begin(), container.end(), URBG<size_t>([this, max]() { return randUInt(max - 1); })); |
| 191 | } |
| 192 | |
| 193 | template <typename Container> |
| 194 | typename Container::value_type Random::randValueFrom(Container const& container) { |