klyn.Type.operator!=
method
public static operator!=(left as Type, right as Type) as Boolean:
Description
Returns the negation of type equality. print(Int.type != String.type)
Parameters
  • left Left type.
  • right Right type.
Returns
`true` when the reflected types differ.
Example