Difference between revisions of "Manuals/calci/SUPERSET"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''ISSUPERSET(SubsetArray,SuperSetArray)'''</div><br/> ==Description== *SUPERSET function can be used to check the given array is a superset of giv...")
 
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div style="font-size:30px">'''ISSUPERSET(SubsetArray,SuperSetArray)'''</div><br/>
+
<div style="font-size:30px">'''SUPERSET (GivenSubsetArray,GivenSuperSetArray)'''</div><br/>
 +
*<math>GivenSubsetArray</math> and <math>GivenSuperSetArray</math> are set of array values.
 +
 
 
==Description==
 
==Description==
 
*SUPERSET function can be used to check the given array is a superset of given subset array or not.  
 
*SUPERSET function can be used to check the given array is a superset of given subset array or not.  
 
*This function gives the result as TRUE or FALSE.  
 
*This function gives the result as TRUE or FALSE.  
*The result is TRUE when the <math>n</math> given array is a superset of given subset array otherwise the result is false..
+
*The result is TRUE when the given array of value is a superset of given subset array otherwise the result is false..
 
*The argument can be blank, or it can contain data such as text,numbers,error values,logical values or any equations.
 
*The argument can be blank, or it can contain data such as text,numbers,error values,logical values or any equations.
 
*Text input should be give in quotes.
 
*Text input should be give in quotes.
 
  
 
==Examples==
 
==Examples==
Line 14: Line 15:
 
#=SUPERSET(["a","1","b"],["a"]) = true
 
#=SUPERSET(["a","1","b"],["a"]) = true
 
#=SUPERSET([a],[a]) = Sorry! a is not defined
 
#=SUPERSET([a],[a]) = Sorry! a is not defined
 +
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=1wsF9GpGd00&t=1s|280|center|SuperSet}}
 +
 +
==See Also==
 +
*[[Manuals/calci/SET  | SET ]]
 +
*[[Manuals/calci/INSET  | INSET  ]]
 +
 +
==References==
 +
*[https://support.smartbear.com/testcomplete/docs/reference/language/all/set-operations-inset.html Set]
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 14:41, 4 February 2019

SUPERSET (GivenSubsetArray,GivenSuperSetArray)


  • and are set of array values.

Description

  • SUPERSET function can be used to check the given array is a superset of given subset array or not.
  • This function gives the result as TRUE or FALSE.
  • The result is TRUE when the given array of value is a superset of given subset array otherwise the result is false..
  • The argument can be blank, or it can contain data such as text,numbers,error values,logical values or any equations.
  • Text input should be give in quotes.

Examples

  1. =SUPERSET([1,2,3,4],[]) = true
  2. =SUPERSET([1,2,3,4],[1,2]) =true
  3. =SUPERSET(["a"],["a",1,2,3,4])= false
  4. =SUPERSET(["a","1","b"],["a"]) = true
  5. =SUPERSET([a],[a]) = Sorry! a is not defined


Related Videos

SuperSet

See Also

References