| 
| size_t  | combineHash (size_t a, size_t b) noexcept | 
|   | Combines two hash values together.  
  | 
| std::vector< std::string >  | convertUrlMapToVector (const std::unordered_map< std::string, std::string > &urls) noexcept | 
|   | Converts a map of URLs to a vector.  
  | 
| std::string  | getLastSystemError () noexcept | 
|   | Get the last system api call error message.  
  | 
| std::vector< std::byte >  | readFileBytes (const std::filesystem::path &path) noexcept | 
|   | Reads a file as a vector of bytes.  
  | 
| template<typename T>  | 
| const T &  | unmove (T &&t) noexcept | 
|   | Unmoves a value.  
  | 
| bool  | writeFileBytes (const std::filesystem::path &path, const std::vector< std::byte > &bytes, bool overwrite=true) noexcept | 
|   | Writes a vector of bytes to a file.  
  |