Add a random numbers test with a fixed seed.
This commit is contained in:
parent
14954a3816
commit
5953ea7cb5
2 changed files with 24 additions and 0 deletions
|
@ -296,6 +296,12 @@ namespace dhandy {
|
|||
std::string to_string (I num) {
|
||||
return std::string(int_to_ary(num).to_string_view());
|
||||
}
|
||||
|
||||
template <std::size_t S>
|
||||
std::string operator+ (std::string a, const ReversedSizedArray<char, S>& b) {
|
||||
a.append(b.data(), b.size() - 1);
|
||||
return a;
|
||||
}
|
||||
#endif
|
||||
} //namespace dhandy
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue