mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-30 14:52:51 -06:00
a major refactoring in the robust parser: bottom-up filtering and garbage collection for the chart
This commit is contained in:
@@ -251,6 +251,12 @@ gu_map_find_key(GuMap* map, const void* key)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
bool
|
||||
gu_map_has(GuMap* ht, const void* key)
|
||||
{
|
||||
size_t idx;
|
||||
return gu_map_lookup(ht, key, &idx);
|
||||
}
|
||||
|
||||
void*
|
||||
gu_map_insert(GuMap* map, const void* key)
|
||||
|
||||
Reference in New Issue
Block a user