Boron 2.1.0
hashmap.h
1#ifndef HASHMAP_H
2#define HASHMAP_H
3
4
5extern void hashmap_values( UThread*, const UCell* mapC, UBuffer* blk );
6extern void hashmap_clear( UThread*, UCell* mapC );
7extern UStatus hashmap_insert( UThread*, const UCell* mapC, const UCell* keyC,
8 const UCell* valueC );
9extern UStatus hashmap_remove( UThread*, const UCell* mapC, const UCell* keyC );
10extern const UCell* hashmap_select( UThread*, const UCell* cell,
11 const UCell* sel, UCell* tmp );
12
13
14#endif //HASHMAP_H
The UBuffer struct holds information about a resource, usually a chunk of memory.
Definition urlan.h:266
The UThread struct stores the data specific to a thread of execution.
Definition urlan.h:309
A cell holds a single value of a simple type or a reference (often to a UBuffer) for a complex type.
Definition urlan.h:248
UStatus
Definition urlan.h:116