Navigation
Synopsis Not equal operator on tuple values.
Syntax Exp1 != Exp2
Types
Exp1 Exp2 Exp1 != Exp2
tuple[ T11, T12, ... ] tuple[ T21, T22, ... ] bool
Description Yields true if both tuples are not identical and false otherwise.
Examples
rascal><1, "abc", true> != <1, "abc">;
bool: true
rascal><1, "abc", true> != <1, "abc", true>;
bool: false
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.