A custom string wrapper of C-style strings
- C++ 98.6%
- CMake 1.4%
|
Ilias Woithe
7be9c14431
Add comments documenting each method
- *each method that's not an operator or constructor |
||
|---|---|---|
| src | Add comments documenting each method | |
| tests | Update the color test | |
| .gitignore | Ignore the scratchpad directory | |
| CMakeLists.txt | Delete the examples directory | |
| LICENSE | Add LICENSE | |
| README.md | Update the color test | |
IwString
A custom string type created only for the purpose of learning. Most sane people use std::string.
To Do
- Refactoring/clean up
- Memory management is currently done throughout the string class, difficult to follow and maintain
- Comment the code to clear up how I've implemented certain algorithms
- Use the Boyer–Moore algorithm for the
find()method instead of brute force- If the length of
findStris one character, use a single for-loop
- If the length of
- Add more ANSI escape code support
License
IwString is released under the MIT license (more details)