C++ String implementation with extra functions compared to std::string
The main aim of this library is to provide a custom implementation of string, easier to use compared to the std one (not necessary faster).
This library is very easy to use as it syntax is pretty similar to the standard c++ one.
string a = "Hello";
s += ' ';
string b = "World!";
std::cout << (a + b) << std::endl;
// Output is 'Hello World!'
But it has also many improvements, for example:
string s = "Hello ";
std::cout << (s * 4) << std::endl;
// Output is 'Hello Hello Hello Hello'
Contributing will make you an amazing person, this project really needs your help.
- Domenico Mancini - unique developer - dSyncro
Looking for amazing people that could help improving this project.
This project is licensed under the MIT License - see the LICENSE file for details