ANTLR3_HASH_ENUM_struct (3) Linux Manual Page
ANTLR3_HASH_ENUM_struct –
Internal structure representing an enumeration of a table.
Synopsis
#include <antlr3collections.h>Data Fields
ANTLR3_UINT32 bucketpANTLR3_HASH_ENTRY entry
void(* free )(struct ANTLR3_HASH_ENUM_struct *table)
int(* next )(struct ANTLR3_HASH_ENUM_struct *en, pANTLR3_HASH_KEY *key, void **data)
pANTLR3_HASH_TABLE table
Detailed Description
Internal structure representing an enumeration of a table.This is returned by antlr3Enumeration() Allows the programmer to traverse the table in hash order without knowing what is in the actual table.
Note that it is up to the caller to ensure that the table structure does not change in the hash bucket that is currently being enumerated as this structure just tracks the next pointers in the bucket series.
