Allocate a new integer set.
Add an integer into a TpIntset.
integer to add
Unset every integer in the set.
Free all memory used by the set.
Remove each integer in other
from self,
analogous to the bitwise
operation self &= (~other).
members to remove
Call func(
element, userdata)
for each element of set,
in order.
TpIntFunc
to use to iterate the set
Return the same thing as (tp_intset_size (set) == 0)
,
but calculated more efficiently.
A set of integers
Tests if element
is a member of set
integer to test
Remove an integer from a TpIntset
integer to add
Add each integer in other
to self,
analogous to the bitwise operation
self |= other.
members to add
An array of guint
Allocate a new integer set.
Allocate a new integer set containing the given integer.
integer to add to a new set
Allocate a new integer set.
ignored (it was previously 1 more than the largest integer you expect to store)
Opaque type representing a set of unsigned integers.
Before 0.11.16, this type was calledTpIntSet , which is
now a backwards compatibility typedef.