gi-glib-2.0.12: GLib bindings

CopyrightWill Thompson, Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (garetxe@gmail.com)
Safe HaskellNone
LanguageHaskell2010

GI.GLib.Structs.HashTableIter

Contents

Description

A GHashTableIter structure represents an iterator that can be used to iterate over the elements of a HashTable. GHashTableIter structures are typically allocated on the stack and then initialized with hashTableIterInit.

Synopsis

Exported types

newtype HashTableIter Source #

Instances

WrappedPtr HashTableIter Source # 
(~) AttrOpTag tag AttrSet => Constructible HashTableIter tag Source # 
((~) * info (ResolveHashTableIterMethod t HashTableIter), MethodInfo * info HashTableIter p) => IsLabel t (HashTableIter -> p) Source # 

Methods

fromLabel :: Proxy# Symbol t -> HashTableIter -> p #

((~) * info (ResolveHashTableIterMethod t HashTableIter), MethodInfo * info HashTableIter p) => IsLabelProxy t (HashTableIter -> p) Source # 
HasAttributeList * HashTableIter Source # 
((~) * signature (m ()), MonadIO m) => MethodInfo * HashTableIterStealMethodInfo HashTableIter signature Source # 
((~) * signature (Ptr () -> m ()), MonadIO m) => MethodInfo * HashTableIterReplaceMethodInfo HashTableIter signature Source # 
((~) * signature (m ()), MonadIO m) => MethodInfo * HashTableIterRemoveMethodInfo HashTableIter signature Source # 
((~) * signature (m (Bool, Ptr (), Ptr ())), MonadIO m) => MethodInfo * HashTableIterNextMethodInfo HashTableIter signature Source # 
((~) * signature (Map (Ptr ()) (Ptr ()) -> m ()), MonadIO m) => MethodInfo * HashTableIterInitMethodInfo HashTableIter signature Source # 
type AttributeList HashTableIter Source # 

newZeroHashTableIter :: MonadIO m => m HashTableIter Source #

Construct a HashTableIter struct initialized to zero.

Methods

init

hashTableIterInit Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> HashTableIter

iter: an uninitialized HashTableIter

-> Map (Ptr ()) (Ptr ())

hashTable: a HashTable

-> m () 

Initializes a key/value pair iterator and associates it with hashTable. Modifying the hash table after calling this function invalidates the returned iterator.

C code

GHashTableIter iter;
gpointer key, value;

g_hash_table_iter_init (&iter, hash_table);
while (g_hash_table_iter_next (&iter, &key, &value))
  {
    // do something with key and value
  }

Since: 2.16

next

hashTableIterNext Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> HashTableIter

iter: an initialized HashTableIter

-> m (Bool, Ptr (), Ptr ())

Returns: False if the end of the HashTable has been reached.

Advances iter and retrieves the key and/or value that are now pointed to as a result of this advancement. If False is returned, key and value are not set, and the iterator becomes invalid.

Since: 2.16

remove

hashTableIterRemove Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> HashTableIter

iter: an initialized HashTableIter

-> m () 

Removes the key/value pair currently pointed to by the iterator from its associated HashTable. Can only be called after hashTableIterNext returned True, and cannot be called more than once for the same key/value pair.

If the HashTable was created using g_hash_table_new_full(), the key and value are freed using the supplied destroy functions, otherwise you have to make sure that any dynamically allocated values are freed yourself.

It is safe to continue iterating the HashTable afterward:

C code

while (g_hash_table_iter_next (&iter, &key, &value))
  {
    if (condition)
      g_hash_table_iter_remove (&iter);
  }

Since: 2.16

replace

hashTableIterReplace Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> HashTableIter

iter: an initialized HashTableIter

-> Ptr ()

value: the value to replace with

-> m () 

Replaces the value currently pointed to by the iterator from its associated HashTable. Can only be called after hashTableIterNext returned True.

If you supplied a valueDestroyFunc when creating the HashTable, the old value is freed using that function.

Since: 2.30

steal

hashTableIterSteal Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> HashTableIter

iter: an initialized HashTableIter

-> m () 

Removes the key/value pair currently pointed to by the iterator from its associated HashTable, without calling the key and value destroy functions. Can only be called after hashTableIterNext returned True, and cannot be called more than once for the same key/value pair.

Since: 2.16