[vala] glib-2.0: make HashFunc and EqualFunc generic delegates
- From: Evan Nemerson <evann src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala] glib-2.0: make HashFunc and EqualFunc generic delegates
- Date: Fri, 17 Sep 2010 18:56:08 +0000 (UTC)
commit e90e4ee27ede39f20c3e3d45b967d0e877be59f8
Author: Maciej Piechotka <uzytkownik2 gmail com>
Date: Fri Sep 17 11:54:21 2010 -0700
glib-2.0: make HashFunc and EqualFunc generic delegates
Fixes bug 625878.
vapi/glib-2.0.vapi | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi
index 30db41e..797b28f 100644
--- a/vapi/glib-2.0.vapi
+++ b/vapi/glib-2.0.vapi
@@ -3659,8 +3659,8 @@ namespace GLib {
[CCode (ref_function = "g_hash_table_ref", unref_function = "g_hash_table_unref", type_id = "G_TYPE_HASH_TABLE", type_signature = "a{%s}")]
public class HashTable<K,V> {
[CCode (cname = "g_hash_table_new_full", simple_generics = true)]
- public HashTable (HashFunc? hash_func, EqualFunc? key_equal_func);
- public HashTable.full (HashFunc? hash_func, EqualFunc? key_equal_func, DestroyNotify? key_destroy_func, DestroyNotify? value_destroy_func);
+ public HashTable (HashFunc<K>? hash_func, EqualFunc<K>? key_equal_func);
+ public HashTable.full (HashFunc<K>? hash_func, EqualFunc<K>? key_equal_func, DestroyNotify? key_destroy_func, DestroyNotify? value_destroy_func);
public void insert (owned K key, owned V value);
public void replace (owned K key, owned V value);
public unowned V lookup (K key);
@@ -3686,30 +3686,30 @@ namespace GLib {
}
[CCode (has_target = false)]
- public delegate uint HashFunc (void* key);
+ public delegate uint HashFunc<K> (K key);
[CCode (has_target = false)]
- public delegate bool EqualFunc (void* a, void* b);
+ public delegate bool EqualFunc<G> (G a, G b);
public delegate void HFunc (void* key, void* value);
[CCode (has_target = false)]
public delegate void DestroyNotify (void* data);
[CCode (cname = "g_direct_hash")]
- public static GLib.HashFunc direct_hash;
+ public static GLib.HashFunc<void*> direct_hash;
[CCode (cname = "g_direct_equal")]
- public static GLib.EqualFunc direct_equal;
+ public static GLib.EqualFunc<void*> direct_equal;
[CCode (cname = "g_int64_hash")]
- public static GLib.HashFunc int64_hash;
+ public static GLib.HashFunc<int64?> int64_hash;
[CCode (cname = "g_int64_equal")]
- public static GLib.EqualFunc int64_equal;
+ public static GLib.EqualFunc<int64?> int64_equal;
[CCode (cname = "g_int_hash")]
- public static GLib.HashFunc int_hash;
+ public static GLib.HashFunc<int?> int_hash;
[CCode (cname = "g_int_equal")]
- public static GLib.EqualFunc int_equal;
+ public static GLib.EqualFunc<int?> int_equal;
[CCode (cname = "g_str_hash")]
- public static GLib.HashFunc str_hash;
+ public static GLib.HashFunc<string> str_hash;
[CCode (cname = "g_str_equal")]
- public static GLib.EqualFunc str_equal;
+ public static GLib.EqualFunc<string> str_equal;
[CCode (cname = "g_free")]
public static GLib.DestroyNotify g_free;
[CCode (cname = "g_object_unref")]
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]