GDExtensionInterfaceVariantSetKeyed typedef

GDExtensionInterfaceVariantSetKeyed = Pointer<NativeFunction<GDExtensionInterfaceVariantSetKeyedFunction>>

@name variant_set_keyed @since 4.1

Sets a keyed property on a Variant to a value.

@param p_self A pointer to the Variant. @param p_key A pointer to a Variant representing the key. @param p_value A pointer to a Variant representing the value. @param r_valid A pointer to a boolean which will be set to false if the operation is invalid.

@see Variant::set_keyed()

Implementation

typedef GDExtensionInterfaceVariantSetKeyed =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceVariantSetKeyedFunction>
    >;