Example #1
0
 /**
  * This method evaluates whether the left operand is NOT identical to the right operand.
  *
  * @access public
  * @static
  * @param IOption\Type $xs                                  the left operand
  * @param Core\Type $ys                                     the right operand
  * @return IBool\Type                                       whether the left operand is NOT identical
  *                                                          to the right operand
  */
 public static function ni(IOption\Type $xs, Core\Type $ys) : IBool\Type
 {
     // !==
     return IBool\Module::not(IOption\Module::id($xs, $ys));
 }