GDExtensionInterfaceVariantGetIndexed typedef
GDExtensionInterfaceVariantGetIndexed = Pointer<NativeFunction<GDExtensionInterfaceVariantGetIndexedFunction> >
@name variant_get_indexed @since 4.1
Gets the value of an index from a Variant.
@param p_self A pointer to the Variant. @param p_index The index. @param r_ret A pointer to a Variant which will be assigned 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 GDExtensionInterfaceVariantGetIndexed =
ffi.Pointer<
ffi.NativeFunction<GDExtensionInterfaceVariantGetIndexedFunction>
>;