crstl
crstl copied to clipboard
string
- [x] erase
- [x] erase_all
- [ ] erase_if
- [x] replace
- [x] replace_all(char, char)
- [ ] replace_all(string, string)
- [ ] replace_all(char, string)
- [ ] replace_all(string, char)
- [ ] replace_all_utf8(char, char)
- [ ] split
- [ ] findi: case insensitive
- [ ] replacei: case insensitive
- [x] to_string
- [ ] optimize fixed_string so that length is encoded in the last byte, if length < 256
- [ ] optimize string so that optionally length and capacity are not 8 bytes each but less if usage permits. This has an impact on the SSO so take that into account