https://github.com/azriel91/cpp-container-equality
demonstrates container equality in c++
https://github.com/azriel91/cpp-container-equality
Last synced: 4 months ago
JSON representation
demonstrates container equality in c++
- Host: GitHub
- URL: https://github.com/azriel91/cpp-container-equality
- Owner: azriel91
- Created: 2014-06-16T07:50:14.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-16T07:51:57.000Z (about 11 years ago)
- Last Synced: 2025-01-22T17:46:15.373Z (6 months ago)
- Language: C++
- Size: 109 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Compile and Run
In the project directory, run the following command:```
g++ Equality.cpp -o Equality && Equality
```## Output:
```
instanceEquals: false
valueEquals: true
vectorEquals: false
containerValuesEqual: true
```