GDExtensionInterfaceVariantCanConvertStrict typedef

GDExtensionInterfaceVariantCanConvertStrict = Pointer<NativeFunction<GDExtensionInterfaceVariantCanConvertStrictFunction>>

@name variant_can_convert_strict @since 4.1

Checks if Variant can be converted from one type to another using stricter rules.

@param p_from The Variant type to convert from. @param p_to The Variant type to convert to.

@return true if the conversion is possible; otherwise false.

Implementation

typedef GDExtensionInterfaceVariantCanConvertStrict =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceVariantCanConvertStrictFunction>
    >;