Boron
2.1.0
urlan
hashmap.h
1
#ifndef HASHMAP_H
2
#define HASHMAP_H
3
4
5
extern
void
hashmap_values(
UThread
*,
const
UCell
* mapC,
UBuffer
* blk );
6
extern
void
hashmap_clear(
UThread
*,
UCell
* mapC );
7
extern
UStatus
hashmap_insert(
UThread
*,
const
UCell
* mapC,
const
UCell
* keyC,
8
const
UCell
* valueC );
9
extern
UStatus
hashmap_remove(
UThread
*,
const
UCell
* mapC,
const
UCell
* keyC );
10
extern
const
UCell
* hashmap_select(
UThread
*,
const
UCell
* cell,
11
const
UCell
* sel,
UCell
* tmp );
12
13
14
#endif
//HASHMAP_H
UBuffer
The UBuffer struct holds information about a resource, usually a chunk of memory.
Definition
urlan.h:266
UThread
The UThread struct stores the data specific to a thread of execution.
Definition
urlan.h:309
UCell
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
UStatus
Definition
urlan.h:116
Generated by
1.13.0