Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
The GTree struct is an opaque data structure representing a [balanced binary tree][glib-Balanced-Binary-Trees]. It should be accessed only by using the following functions.
Synopsis
- newtype Tree = Tree (ManagedPtr Tree)
- noTree :: Maybe Tree
- treeDestroy :: (HasCallStack, MonadIO m) => Tree -> m ()
- treeHeight :: (HasCallStack, MonadIO m) => Tree -> m Int32
- treeInsert :: (HasCallStack, MonadIO m) => Tree -> Ptr () -> Ptr () -> m ()
- treeLookup :: (HasCallStack, MonadIO m) => Tree -> Ptr () -> m (Ptr ())
- treeLookupExtended :: (HasCallStack, MonadIO m) => Tree -> Ptr () -> Ptr () -> Ptr () -> m Bool
- treeNnodes :: (HasCallStack, MonadIO m) => Tree -> m Int32
- treeRemove :: (HasCallStack, MonadIO m) => Tree -> Ptr () -> m Bool
- treeReplace :: (HasCallStack, MonadIO m) => Tree -> Ptr () -> Ptr () -> m ()
- treeSteal :: (HasCallStack, MonadIO m) => Tree -> Ptr () -> m Bool
- treeUnref :: (HasCallStack, MonadIO m) => Tree -> m ()
Exported types
Memory-managed wrapper type.
Instances
WrappedPtr Tree Source # | |
Defined in GI.GLib.Structs.Tree |
Methods
destroy
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> m () |
Removes all keys and values from the Tree
and decreases its
reference count by one. If keys and/or values are dynamically
allocated, you should either free them first or create the Tree
using g_tree_new_full()
. In the latter case the destroy functions
you supplied will be called on all keys and values before destroying
the Tree
.
height
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> m Int32 | Returns: the height of |
insert
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> Ptr () |
|
-> Ptr () |
|
-> m () |
Inserts a key/value pair into a Tree
.
If the given key already exists in the Tree
its corresponding value
is set to the new value. If you supplied a valueDestroyFunc
when
creating the Tree
, the old value is freed using that function. If
you supplied a keyDestroyFunc
when creating the Tree
, the passed
key is freed using that function.
The tree is automatically 'balanced' as new key/value pairs are added, so that the distance from the root to every leaf is as small as possible.
lookup
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> Ptr () |
|
-> m (Ptr ()) | Returns: the value corresponding to the key, or |
Gets the value corresponding to the given key. Since a Tree
is
automatically balanced as key/value pairs are added, key lookup
is O(log n) (where n is the number of key/value pairs in the tree).
lookupExtended
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> Ptr () |
|
-> Ptr () |
|
-> Ptr () |
|
-> m Bool |
Looks up a key in the Tree
, returning the original key and the
associated value. This is useful if you need to free the memory
allocated for the original key, for example before calling
treeRemove
.
nnodes
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> m Int32 | Returns: the number of nodes in |
Gets the number of nodes in a Tree
.
remove
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> Ptr () |
|
-> m Bool | Returns: |
Removes a key/value pair from a Tree
.
If the Tree
was created using g_tree_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.
If the key does not exist in the Tree
, the function does nothing.
replace
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> Ptr () |
|
-> Ptr () |
|
-> m () |
Inserts a new key and value into a Tree
similar to treeInsert
.
The difference is that if the key already exists in the Tree
, it gets
replaced by the new key. If you supplied a valueDestroyFunc
when
creating the Tree
, the old value is freed using that function. If you
supplied a keyDestroyFunc
when creating the Tree
, the old key is
freed using that function.
The tree is automatically 'balanced' as new key/value pairs are added, so that the distance from the root to every leaf is as small as possible.
steal
unref
:: (HasCallStack, MonadIO m) | |
=> Tree |
|
-> m () |
Decrements the reference count of tree
by one.
If the reference count drops to 0, all keys and values will
be destroyed (if destroy functions were specified) and all
memory allocated by tree
will be released.
It is safe to call this function from any thread.
Since: 2.22