Hash Set
Implements a simple HashSet for strings in environments where you don't have the std lib available.
You should probably not be using this. Instead consider using hash_set
which is a more generic implementation with templates.
This is only useful for very specific use cases having specific memory layout requirements.
Setup
npm install --save hashset-cpp
Sample
using std::cout;using std::endl; int
Build everything in release
make
Running sample
make sample
Running tests
make test
Clearing build files
make clean
Linting
npm run lint