Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/codesofrishi/my-own-string-class
- Owner: CodesOfRishi
- License: apache-2.0
- Created: 2020-01-31T16:35:24.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-01T12:44:19.000Z (almost 5 years ago)
- Last Synced: 2024-07-31T13:03:20.344Z (5 months ago)
- Language: C++
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.