Difference between revisions of "Array.isFalse()"

From ZCubes Wiki
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 4: Line 4:
  
  
*[[ Z3 | << Z3 Home ]]
+
==Array.isFalse() ==
*[[ Z%5E3_Language_Documentation | Z3 Language Documentation]]
 
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
 
  
 +
Checks all the members in this array are true or there is any false.
  
==Array.isFalse() ==
+
Same as  isfalse.
  
Checks if all the members in this array are true.
+
isfalse is any false will returns the result as true.Otherwise false.
  
Same as [[Array.isfalse() | isfalse]]
+
[false,false,true].isfalse() = true
  
isfalse is any false will returns the result as true.Otherwise false.
+
[true,true,true].isFalse() = false
  
 
==See also==
 
==See also==
 
[[Array.isTrue() | IsTrue]]
 
[[Array.isTrue() | IsTrue]]

Latest revision as of 04:11, 16 April 2020


Array.isFalse()

Checks all the members in this array are true or there is any false.

Same as isfalse.

isfalse is any false will returns the result as true.Otherwise false.

[false,false,true].isfalse() = true

[true,true,true].isFalse() = false

See also

IsTrue