pawn-map
pawn-map copied to clipboard
Hash-map implementation in PAWN
Hash-map implementation in PAWN
Description
This is a map data structure implementation in PAWN using binary search tree. Detailed documentation can be checked out at the wiki.
Installation
Using sampctl
- Get sampctl from https://github.com/Southclaws/sampctl
- Install package using this command:
sampctl package install BigETI/pawn-map
- Include library in your PAWN code
#include <map>
Manually
- Get pawn-memory from https://github.com/BigETI/pawn-memory
- Move or copy map.inc to your PAWN includes directory
- Include library in your PAWN code
#include <map>
Dependencies
- https://github.com/BigETI/pawn-memory
- https://github.com/sampctl/pawn-stdlib
Documentation
You can find the documentation here: https://github.com/BigETI/pawn-map/wiki
Licence
You can find the licence here: https://github.com/BigETI/pawn-map/blob/master/LICENCE.md
How to contribute to this project?
Just create a fork out of this project, make your changes and create a pull request.