value_hash_lookup_vals
Description:
[ Version ( deprecated = true ) ]
public bool value_hash_lookup_vals (HashTable<string,Value?> hash, ...)
Warning: value_hash_lookup_vals is deprecated.
Looks up a number of keys in hash and returns their values.
Parameters:
| hash |
a value hash
|
| ... |
the type of first_key, a pointer to that type, and then additional key/type/pointer triplets, terminated by null
.
|
| first_key |
the first key to look up
|
Returns:
|
true if all of the keys were found, false if any were missing; note that you will generally need to
initialize each destination variable to a reasonable default value, since there is no way to tell which keys were found and which
were not.
|