/// <summary>
 /// NANDs all the values of the array together
 /// </summary>
 /// <param name="values"></param>
 /// <returns></returns>
 public static bool NAND(this bool[] values)
 {
     return(!values.AND());
 }