Navigation
Synopsis Not equal operator on lists.
Syntax Exp1 != Exp2
Types
Exp1 Exp2 Exp1 != Exp2
list[T1] list[T2] bool
Description Yields true if both arguments are unequal lists and false otherwise.
Examples
rascal>[1, 2, 3] != [3, 2, 1];
bool: true
rascal>[1, 2, 3] != [1, 2, 3];
bool: false

Questions
Question [1].
The type of [true, false, false, false, true] != [true, false, true, false, true] is

Question [2].
(["Prince Charming", "Saffron", "Apple"] != ["Prince Charming", "Saffron", "Apple"]) == 

Question [3].
([71, 23] != [78, 16, 71]) == 



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.