GDExtensionInterfaceVariantGetPtrOperatorEvaluator typedef

GDExtensionInterfaceVariantGetPtrOperatorEvaluator = Pointer<NativeFunction<GDExtensionInterfaceVariantGetPtrOperatorEvaluatorFunction>>

@name variant_get_ptr_operator_evaluator @since 4.1

Gets a pointer to a function that can evaluate the given Variant operator on the given Variant types.

@param p_operator The variant operator. @param p_type_a The type of the first Variant. @param p_type_b The type of the second Variant.

@return A pointer to a function that can evaluate the given Variant operator on the given Variant types.

Implementation

typedef GDExtensionInterfaceVariantGetPtrOperatorEvaluator =
    ffi.Pointer<
      ffi.NativeFunction<
        GDExtensionInterfaceVariantGetPtrOperatorEvaluatorFunction
      >
    >;