DocumentationProject: StringConversion was easy

This commit is contained in:
apio 2022-06-08 19:46:14 +02:00
parent e83a5a003e
commit af43023732

View File

@ -1,6 +1,8 @@
#pragma once #pragma once
#include <string> #include <string>
/* Easy way of converting an int to a string without writing 5 lines of code every time you want to do it. */
std::string int_to_string(const int& value); std::string int_to_string(const int& value);
/* Easy way of converting a float to a string without writing 5 lines of code every time you want to do it. */
std::string float_to_string(const float& value); std::string float_to_string(const float& value);