Difference between revisions of "Array.isTrue()"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...")
 
 
(2 intermediate revisions by the same user not shown)
Line 10: Line 10:
 
Same as Array.istrue()
 
Same as Array.istrue()
  
See also [[Array.isFalse()]]
+
istrue is all true will returns the result as true.Otherwise false.
 +
 
 +
[true,true,false].istrue() = false
 +
 
 +
[true,true,true].istrue() = true
 +
 
 +
==See also==
 +
[[Array.isFalse()| isFalse]]

Latest revision as of 04:07, 16 April 2020


Array.isTrue()

Checks if all the members in this array are true.

Same as Array.istrue()

istrue is all true will returns the result as true.Otherwise false.

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

[true,true,true].istrue() = true

See also

isFalse