IntsetFastIter


Object Hierarchy:

TelepathyGLib.IntsetFastIter TelepathyGLib.IntsetFastIter TelepathyGLib.IntsetFastIter

Description:

[ CCode ( has_type_id = false ) ]
[ Version ( since = "0.11.6" ) ]
public struct IntsetFastIter

An opaque structure representing iteration in undefined order over a set of integers.

Must be initialized with init.

Before 0.11.16, this type was called TpIntSetFastIter, which is now a backwards compatibility typedef.

Usage is similar to GenericSetIter:

TpIntsetFastIter iter;
guint element;

tp_intset_fast_iter_init (&iter, intset);

while (tp_intset_fast_iter_next (&iter, &element))
{
printf ("%u is in the intset\n", element);
}


Namespace: TelepathyGLib
Package: telepathy-glib

Content:

Methods: