This was causing a syntax error when trying to compile Vala with an
older version of valac (whatever is in gnome-continuous). It looks
like we should hold off on adding stuff with this syntax until
next cycle.
public void @set (owned K key, owned V value);
public List<unowned K> get_keys ();
public List<unowned V> get_values ();
- public (unowned K)[] get_keys_as_array ();
public void @foreach (HFunc<K,V> func);
[CCode (cname = "g_hash_table_foreach")]
public void for_each (HFunc<K,V> func);