GDExtensionInterfaceVariantSetIndexed typedef
GDExtensionInterfaceVariantSetIndexed = Pointer<NativeFunction<GDExtensionInterfaceVariantSetIndexedFunction> >
@name variant_set_indexed @since 4.1
Sets an index on a Variant to a value.
@param p_self A pointer to the Variant. @param p_index The index. @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. @param r_oob A pointer to a boolean which will be set to true if the index is out of bounds.
Implementation
typedef GDExtensionInterfaceVariantSetIndexed =
ffi.Pointer<
ffi.NativeFunction<GDExtensionInterfaceVariantSetIndexedFunction>
>;