Corelink CPP Client
Corelink C++ client library
 
Loading...
Searching...
No Matches
random_gen.hpp
Go to the documentation of this file.
1#pragma once
2
4#include <random>
5
6namespace corelink
7{
8 namespace utils
9 {
13 namespace random_numbers
14 {
15 static thread_local std::random_device rd;
16 static thread_local std::mt19937_64 mt(rd());
17
24 CORELINK_EXPORT uint64_t get_random_int();
25 }
26 }
27}