Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/codesofrishi/my-own-string-class

My own string class using raw pointers.
https://github.com/codesofrishi/my-own-string-class

Last synced: about 1 month ago
JSON representation

My own string class using raw pointers.

Awesome Lists containing this project

README

        

# My-Own-String-Class
### My own string class using raw pointers.

- *Data Type* --> **Mystring**
- `=` assignment
- `==` comparison
- `!=` comparison
- `<` lexicographically smaller than
- `>` lexicographically larger than
- `+` string concatenation
- `+=` string concatenation & assignment
- `-` lowercase conversion
- `*` string repetition
- `*=` string repetition & assignment
- Print & extract from output & input stream Mystring objects.