GLib.VariantType.prototype.equal

function equal(type2: GLib.VariantType): Boolean {
    // Gjs wrapper for g_variant_type_equal()
}
  

Compares type1 and type2 for equality.

Only returns true if the types are exactly equal. Even if one type is an indefinite type and the other is a subtype of it, false will be returned if they are not exactly equal. If you want to check for subtypes, use GLib.VariantType.prototype.is_subtype_of.

The argument types of type1 and type2 are only #gconstpointer to allow use with GLib.HashTable without function pointer casting. For both arguments, a valid GLib.VariantType must be provided.

type2

a GLib.VariantType

Returns

true if type1 and type2 are exactly equal

Since 2.24