GDExtensionInterfaceVariantIterNext typedef

GDExtensionInterfaceVariantIterNext = Pointer<NativeFunction<GDExtensionInterfaceVariantIterNextFunction>>

@name variant_iter_next @since 4.1

Gets the next value for an iterator over a Variant.

@param p_self A pointer to the Variant. @param r_iter A pointer to a Variant which will be assigned the iterator. @param r_valid A pointer to a boolean which will be set to false if the operation is invalid.

@return true if the operation is valid; otherwise false.

@see Variant::iter_next()

Implementation

typedef GDExtensionInterfaceVariantIterNext =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceVariantIterNextFunction>
    >;