klyn.Type.operator!=
method
public static operator!=(left as Type, right as Type) as Boolean:
Description

Returns the negation of type equality.

Parameters
  • left Left type.
  • right Right type.
Returns

true when the reflected types differ.

Example
print(Int.type != String.type)