summaryrefslogtreecommitdiff
path: root/vapi/glib-2.0.vapi
diff options
context:
space:
mode:
Diffstat (limited to 'vapi/glib-2.0.vapi')
-rw-r--r--vapi/glib-2.0.vapi2
1 files changed, 2 insertions, 0 deletions
diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi
index 2e99c6e61..d43dec06d 100644
--- a/vapi/glib-2.0.vapi
+++ b/vapi/glib-2.0.vapi
@@ -5402,6 +5402,8 @@ namespace GLib {
[CCode (cname = "g_hash_table_new_full", simple_generics = true)]
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);
+ [Version (since = "2.72")]
+ public HashTable.similar (HashTable<K,V> other_hash_table);
public void insert (owned K key, owned V value);
public void replace (owned K key, owned V value);
[Version (since = "2.32", deprecated_since = "vala-0.26", replacement = "GenericSet.add")]