all groups > asp.net building controls > may 2004 >
You're in the

asp.net building controls

group:

How To Write the external Iterator?


Re: How To Write the external Iterator? Alex B
5/24/2004 10:24:53 AM
asp.net building controls:
Easy...

1. Learn how to set the clock correctly on your computer.
2. Learn basic etiquette in usenet (i.e. not cross posting to a ton of
newsgroups)


[quoted text, click to view]

How To Write the external Iterator? apex
5/24/2004 4:24:49 PM
Hi all:
I want to write an iterator class for GHashTable which belongs to GNU
glib[ c library ] .Access function of GHashTable now only support internal
iterator and define
struct _GHashNode
{
gpointer key;
gpointer value;
GHashNode *next;
};
and
struct _GHashTable
{
gint size;
gint nnodes;
GHashNode **nodes;
GHashFunc hash_func;
GEqualFunc key_equal_func;
GDestroyNotify key_destroy_func;
GDestroyNotify value_destroy_func;
};
in ghash.c file .How can I write an external iterator for GHashTable ?

Any suggestion will be appreciated !


Thanks a lot !






Re: How To Write the external Iterator? Jeff Johnson [MVP: VB]
5/24/2004 5:26:50 PM
Boing

AddThis Social Bookmark Button