GDExtensionInterfaceVariantHasKey typedef
GDExtensionInterfaceVariantHasKey = Pointer<NativeFunction<GDExtensionInterfaceVariantHasKeyFunction> >
@name variant_has_key @since 4.1
Checks if a Variant has a key.
@param p_self A pointer to the Variant. @param p_key A pointer to a Variant representing the key. @param r_valid A pointer to a boolean which will be set to false if the key doesn't exist.
@return true if the key exists; otherwise false.
Implementation
typedef GDExtensionInterfaceVariantHasKey =
ffi.Pointer<ffi.NativeFunction<GDExtensionInterfaceVariantHasKeyFunction>>;