|
Macaulay2 Engine
|
Go to the source code of this file.
Macros | |
| #define | T Table_T |
Functions | |
| T * | Table_new (int hint, int cmp(const void *x, const void *y), unsigned hash(const void *key)) |
| void | Table_free (T **table) |
| int | Table_length (T *table) |
| void * | Table_put (T *table, const void *key, void *value) |
| void * | Table_get (T *table, const void *key) |
| void * | Table_remove (T *table, const void *key) |
| void | Table_map (T *table, void apply(const void *key, void **value, void *cl), void *cl) |
| const void ** | Table_toArray (T *table, void *end) |